Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.53 KB

File metadata and controls

37 lines (25 loc) · 1.53 KB

sqlite-helper

⚠️ WARNING: sqlite-helper is under heavy development and is not ready for production use. If you still decide to implement it, make sure to intervally check for updates.

A tool to make interactions with sqlite databases easier

GitHub repository size

Requirements

Node.js 12.0.0 or above is required.

Installation

//Using npm
npm i PandaDriver156/sqlite-helper

Example usage

const SQLite = require('sqlite-helper');

const db = new SQLite({
tableName: "foods",
columns: {
    name: "text",
    price: "int"
},
wal: true
});

Documentation