Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 403 Bytes

File metadata and controls

21 lines (15 loc) · 403 Bytes

💬 Inquire - SQLite3

Better SQLite3 connection for the Inquire library.

Install

$ npm i @stackpress/inquire-sqlite3

Usage

import sqlite from 'better-sqlite3';
import connect from '@stackpress/inquire-sqlite3';

//this is the raw resource, anything you want
const resource = sqlite(':memory:');
//this maps the resource to the engine
const engine = connect(resource);