README
@nore/sqlite
An elegant interface for SQLite.
import SQLite from "@nore/sqlite";
const db = new SQLite({ file: "/path/to/db.sqlite" });
const table = db.table("users");
const users = await table.find({
city: "Constangeles",
age: { $gt: 25 },
});
Installation
$ npm install @nore/sqlite
Documentation
You can find the documentation following this link.