SQLite module for the Tymber framework
npm install @tymber/sqliteThe SQLite module.
Table of contents
* Installation
* Usage
* License
```
npm i @tymber/sqlite
`ts
import sqlite3 from "sqlite3";
import { open } from "sqlite";
import { SQLiteDB } from "@tymber/sqlite";
const dbFile = await open({
filename: "/tmp/mydb.sqlite",
driver: sqlite3.Database,
});
const db = new SQLiteDB(dbFile);
``