-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathrepl.js
40 lines (36 loc) · 1.33 KB
/
repl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* SPDX-FileCopyrightText: 2016-present Kriasoft <[email protected]> */
/* SPDX-License-Identifier: MIT */
/**
* REPL shell that can be used for working with Knex.js from
* the terminal window. For example:
*
* $ yarn repl
* > await db.table("user").first();
*
* @see https://knexjs.org/
*/
const repl = require("repl");
const { greenBright, blueBright } = require("chalk");
const createDatabase = require("./db-create");
// Load environment variables (PGHOST, PGUSER, etc.)
require("../env/config");
// Allow to import TypeScript files compiled on the fly via Babel
require("@babel/register")({ extensions: [".ts", ".js"] });
// Starts a REPL shell
Promise.resolve()
.then(() => createDatabase())
.then(async function () {
const db = (global.db = require("../db").default);
return db.select(db.raw("version(), current_database() as database"));
})
.then(([x]) => {
console.log(x.version);
console.log(`Connected to ${greenBright(x.database)}. Usage example:`);
console.log(``);
console.log(` await db.table("user").first()`);
console.log(` await db.select(db.raw("version()"))`);
console.log(` await db.fn.newUserId()`);
console.log(``);
console.log(`Type ${greenBright(".exit")} to exit the REPL shell`);
repl.start(blueBright(`#> `)).on("exit", () => global.db?.destroy());
});