@nore/sqlite

An elegant interface to SQLite

Usage no npm install needed!

<script type="module">
  import noreSqlite from 'https://cdn.skypack.dev/@nore/sqlite';
</script>

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.


License MIT  ·  GitHub @nore  ·  Twitter @navaru