
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@6river/sqlite
Advanced tools
A wrapper library that adds ES6 promises and SQL-based migrations API to sqlite3 (docs).
🔥 Want to strengthen your core JavaScript skills and master ES6?
I would personally recommend this awesome ES6 course by Wes Bos.
$ npm install sqlite --save
NOTE: For Node.js v5 and below use var db = require('sqlite/legacy');
.
This module has the same API as the original sqlite3
library (docs),
except that all its API methods return ES6 Promises and do not accept callback arguments.
Below is an example of how to use it with Node.js, Express and Babel:
import express from 'express';
import Promise from 'bluebird';
import sqlite from 'sqlite';
const app = express();
const port = process.env.PORT || 3000;
const dbPromise = sqlite.open('./database.sqlite', { Promise });
app.get('/post/:id', async (req, res, next) => {
try {
const db = await dbPromise;
const [post, categories] = await Promise.all([
db.get('SELECT * FROM Post WHERE id = ?', req.params.id),
db.all('SELECT * FROM Category')
]);
res.render('post', { post, categories });
} catch (err) {
next(err);
}
});
app.listen(port);
This module is compatible with sql-template-strings.
import SQL from 'sql-template-strings';
import sqlite from 'sqlite';
const db = await sqlite.open('./database.sqlite');
const book = 'harry potter';
const author = 'J. K. Rowling';
const data = await db.all(SQL`SELECT author FROM books WHERE name = ${book} AND author = ${author}`);
If you want to enable the database object cache
sqlite.open('./database.sqlite', { cached: true })
This module comes with a lightweight migrations API that works with SQL-based migration files as the following example demonstrates:
migrations/001-initial-schema.sql
-- Up
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');
-- Down
DROP TABLE Category
DROP TABLE Post;
migrations/002-missing-index.sql
-- Up
CREATE INDEX Post_ix_categoryId ON Post (categoryId);
-- Down
DROP INDEX Post_ix_categoryId;
app.js
(Node.js/Express)import express from 'express';
import Promise from 'bluebird';
import sqlite from 'sqlite';
const app = express();
const port = process.env.PORT || 3000;
const dbPromise = Promise.resolve()
.then(() => sqlite.open('./database.sqlite', { Promise }))
.then(db => db.migrate({ force: 'last' }));
app.use(/* app routes */);
app.listen(port);
NOTE: For the development environment, while working on the database schema, you may want to set
force: 'last'
(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.
The open
method resolves to the db instance which can be used in order to reference multiple open databases.
import sqlite from 'sqlite';
Promise.all([
sqlite.open('./main.sqlite', { Promise }),
sqlite.open('./users.sqlite', { Promise })
]).then(function([mainDb, usersDb]){
...
});
import sqlite from 'sqlite';
async function main() {
const [mainDb, usersDb] = await Promise.all([
sqlite.open('./main.sqlite', { Promise }),
sqlite.open('./users.sqlite', { Promise })
]);
...
}
main();
The MIT License © 2015-present Kriasoft. All rights reserved.
Made with ♥ by Konstantin Tarkus (@koistya), Theo Gravity and contributors
FAQs
SQLite client for Node.js applications with SQL-based migrations API
We found that @6river/sqlite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.