SQLite data provider for the happn database system, version 1.0.10. This package acts as a storage backend using SQLite for happn, a lightweight data layer. It focuses on providing a simple, file-based database solution with low overhead. Updates are infrequent. Compared to other providers, SQLite is ideal for embedded or single-node deployments.
npm install happn-db-provider-sqliteNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a SQLite provider and a happn client to perform basic CRUD operations.
Run `npm install happn` alongside this package.
Use `import Provider from 'happn-db-provider-sqlite'`.
Remove the `autoCreate` option from the constructor.
Use a different provider (e.g., PostgreSQL) for concurrent scenarios, or configure SQLite WAL mode manually.
Install the core package: `npm install happn`
Use `import Provider from 'happn-db-provider-sqlite'` (not `{ Provider }`)Ensure the `tableName` option matches the table in the SQLite file, or allow auto-creation.
No dependency data recorded yet.