UNPKG
knex-pglite
Version:
latest (0.14.0)
0.14.0
0.13.0
0.12.1
0.12.0
0.11.0
0.10.0
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
PGlite Dialect for Knex
github.com/czeidler/knex-pglite
czeidler/knex-pglite
knex-pglite
/
test.mjs
13 lines
(9 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Knex
from
"knex"
;
import
ClientPGLite
from
"./dist/index.js"
;
const
knex =
Knex
({
client
:
ClientPGLite
,
dialect
:
"postgres"
,
connection
: {}, });
console
.
log
(
await
knex.
raw
(
`select NOW();`
)); knex.
destroy
();