@endb/sqlite
v1.4.0
Published
SQLite adapter for Endb
Downloads
17
Readme
@endb/sqlite
SQLite adapter for Endb
Installation
npm install @endb/sqlite
Usage
const Endb = require('endb');
const endb = new Endb('sqlite://path/to/database.sqlite');
const EndbSqlite = require('@endb/sqlite');
const store = new EndbSqlite({
uri: 'sqlite://path/to/database.sqlite',
table: 'cache',
busyTimeout: 10000,
});
const endb = new Endb({ store });