Since PGlite is single user and only supports a single connection, this library doesn't allow users to configure
the connection pool in the Knex.Config
.
Internally, the pool is set to { min: 1, max: 1 }
, i.e. there is exactly one connection at a time.
npm install knex-pglite
import { knex } from "knex";
import ClientPgLite from "knex-pglite";
const instance = knex({
client: ClientPgLite,
dialect: "postgres",
// Use an empty object to use an in memory db
connection: {},
// OR provide own PGLite instance
// connection: { pglite: new PGLite() },
// OR use the filesystem:
// connection: { filename: 'path/to/my-pgdata' },
// OR use indexdb:
// connection: { connectionString: 'idb://my-pgdata' },
});
Mostly based on the build-in knex Postgres/Sqlite dialects.