sqlite3-helper
A promise based wrapper library for the work with sqlite3. It's intended for simple server-apps for nodejs and offer some new functions and a migration-system.
How to install
Since version two this library uses sqlite3 as peer dependency. You need to install it yourself. To get both run
npm i sqlite3-helper sqlite3
const DB = require('sqlite3-helper');
Node version < 11
If you work with a node version < 11 you need to install the older version of sqlite3:
npm i sqlite3-helper sqlite3@4
const DB = require('sqlite3-helper');
Node version < 10
In addition if you work with a node version < 10 (having no support for async function *
async generator functions) use sqlite3-helper/no-generators
:
npm i sqlite3-helper sqlite3@4
const DB = require('sqlite3-helper/no-generators');
How to use
In every file you want access to a sqlite3 database simply require the library and use it right away in any async-function (or as a promise).
anyServerFile.js
const DB = require('sqlite3-helper');
(async () => {
let row = await DB().queryFirstRow('SELECT * FROM users WHERE id=?', userId);
console.log(row.firstName, row.lastName, row.email);
})()
To setup your database, create a sql
-file named 001-init.sql
in a migrations
-directory in the root-directory of your program.
~/migrations/001-init.sql
CREATE TABLE `users` (
id INTEGER PRIMARY KEY,
firstName TEXT NOT NULL,
lastName TEXT NOT NULL,
email TEXT NOT NULL
);
DROP TABLE IF EXISTS `users`;
And that's it!
One global instance
A normal, simple application is mostly working with only one database. To make the class management more easy, this library does the access-control for you - mainly as a singleton. (But you can create a new instance to access other databases.)
The database loads lazy. Only when it's used for the first time, the database is read from the file, the migration is started and the journal-mode WAL is set. The default directory of the database is './data/sqlite3.db'
.
If you want to change the default-values, you can do this by calling the library once in the beginning of your server-code and thus setting it up:
index.js
const DB = require('sqlite3-helper');
DB({
path: './data/sqlite3.db',
memory: false,
readOnly: false,
fileMustExist: false,
WAL: true,
migrate: {
force: false,
table: 'migration',
migrationsPath: './migrations'
}
})
After that you can use the library without parameter:
anotherAPIFile.js
const DB = require('sqlite3-helper');
(async ()=>{
let row = await DB().queryFirstRow('SELECT * FROM users WHERE id=?', userId);
console.log(row.firstName, row.lastName, row.email);
})()
Multiple instances
If you need access to more than one database, you can use DB
as a constructor (calling new DB(...)
instead of just DB(...)
):
const DB = require('sqlite3-helper');
const db1 = new DB({ path: './data/first-db.sqlite' })
const db2 = new DB({ path: './data/second-db.sqlite' })
(async ()=>{
let row = await db1.queryFirstRow('SELECT * FROM users WHERE id=?', userId);
console.log(row.firstName, row.lastName, row.email);
})()
New Functions
This class implements shorthand methods for sqlite3.
(async ()=>{
let allUsers = await DB().query('SELECT * FROM users');
let row = await DB().queryFirstRow('SELECT * FROM users WHERE id=?', userId);
let {id, firstname} = await DB().queryFirstRowObject('SELECT * FROM users WHERE id=?', userId);
let email = await DB().queryFirstCell('SELECT email FROM users WHERE id=?', userId);
let emails = await DB().queryColumn('email', 'SELECT email FROM users');
let emailsByLastName = await DB().queryKeyAndColumn('lastName', 'email', 'SELECT lastName, name FROM users');
})()
Insert, Update and Replace
There are shorthands for update
, insert
and replace
. They are intended to make programming of CRUD-Rest-API-functions easier. With a blacklist
or a whitelist
it's even possible to send a request's query (or body) directly into the database.
Update
await DB().update('users', {
lastName: 'Mustermann',
firstName: 'Max'
}, {
email: 'unknown@emailprovider.com'
})
await DB().update('users', req.body, ['email = ?', req.body.email], ['lastName', 'firstName'])
await DB().updateWithBlackList('users', req.body, req.body.id, ['id', 'email'])
Insert and replace
await DB().insert('users', {
lastName: 'Mustermann',
firstName: 'Max',
email: 'unknown@emailprovider.com'
})
await DB().insert('users', [{
lastName: 'Mustermann',
firstName: 'Max',
email: 'unknown@emailprovider.com'
}, {
lastName: 'Mustermann2',
firstName: 'Max2',
email: 'unknown2@emailprovider.com'
}])
await DB().replace('users', req.body, ['lastName', 'firstName'])
await DB().replaceWithBlackList('users', req.body, ['id', 'email'])
Try and catch
If you want to put invalid values into the database, the functions will throw an error. So don't forget to surround the functions with a try-catch
. Here is an example for an express-server:
const { Router } = require('express')
const bodyParser = require('body-parser')
const DB = require('sqlite3-helper')
router.patch('/user/:id', bodyParser.json(), async function (req, res, next) {
try {
if (!req.params.id) {
res.status(400).json({error: 'missing id'})
return
}
await DB().updateWithBlackList(
'users',
req.body,
req.params.id,
['id']
)
res.statusCode(200)
} catch (e) {
console.error(e)
res.status(503).json({error: e.message})
}
})
Migrations
The migration in this library mimics the migration system of the excellent sqlite by Kriasoft.
To use this feature you have to create a migrations
-directory in your root. Inside you create sql
-files that are separated in a up- and a down-part:
migrations/001-initial-schema.sql
CREATE TABLE Category (id INTEGER PRIMARY KEY, name TEXT);
CREATE TABLE Post (id INTEGER PRIMARY KEY, categoryId INTEGER, title TEXT,
CONSTRAINT Post_fk_categoryId FOREIGN KEY (categoryId)
REFERENCES Category (id) ON UPDATE CASCADE ON DELETE CASCADE);
INSERT INTO Category (id, name) VALUES (1, 'Business');
INSERT INTO Category (id, name) VALUES (2, 'Technology');
DROP TABLE Category
DROP TABLE Post;
migrations/002-missing-index.sql
CREATE INDEX Post_ix_categoryId ON Post (categoryId);
DROP INDEX Post_ix_categoryId;
The files need to be numbered. They are automatically executed before the first use of the database.
NOTE: For the development environment, while working on the database schema, you may want to set
force: true
(default false
) that will force the migration API to rollback and re-apply the latest migration over again each time when Node.js app launches. See "Global Instance".
License
MIT