@endb/postgres
v1.3.0
Published
PostgreSQL adapter for Endb
Downloads
1
Maintainers
Readme
@endb/postgres
PostgreSQL adapter for Endb
Installation
npm install @endb/postgres
Usage
const Endb = require('endb');
const endb = new Endb('postgresql://user:pass@localhost:5432/dbname');
const EndbPostgres = require('@endb/postgres');
const store = new EndbPostgres({
uri: 'postgresql://user:pass@localhost:5432/dbname',
table: 'cache',
});
const endb = new Endb({ store });