enmap-sqlite
TypeScript icon, indicating that this package has built-in type declarations

2.0.5 • Public • Published

Enmap-SQLite

Enmap-SQLite is a provider for the Enmap module.

Installation

To install Enmap-SQLite simply run npm i enmap-sqlite.

Usage

// Load Enmap
const Enmap = require('enmap');
 
// Load EnmapSQLite
const EnmapSQLite = require('enmap-sqlite');
 
// Initialize the provider
const provider = new EnmapSQLite({ name: 'test' });
 
// Initialize the Enmap with the provider instance.
const myColl = new Enmap({ provider: provider });

Shorthand declaration:

const Enmap = require('enmap');
const EnmapSQLite = require('enmap-sqlite');
const myColl = new Enmap({ provider: new EnmapSQLite({ name: 'test' }); });

Options

// Example with all options.
const level = new EnmapSQLite({ 
  name: "test",
  dataDir: './data'
});

name

Defines the name of the table saved in sqlite.

dataDir

Indicates the relative or absolute directory where to hold the sqlite file. If multiple enmap use the same file, a new table is created for each. The filename is always enmap.sqlite.

Readme

Keywords

none

Package Sidebar

Install

npm i enmap-sqlite

Weekly Downloads

13

Version

2.0.5

License

ISC

Unpacked Size

24 kB

Total Files

6

Last publish

Collaborators

  • eslachance