Skip to content
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.

eslachance/enmap-sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.