Skip to content

Util for converting a sqlite database into a nedb database

License

Notifications You must be signed in to change notification settings

Mido22/sqlite-to-nedb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sqlite-to-nedb

Util for converting a sqlite database into a nedb database (one file per table)

the Module is quite simple to use, and it returns you a Promsie:

const converter = require('sqlite-to-nedb');
let dbLocation = './sqlite/data.db';    // location of your sqlite file
let nedbFolder = './datastore';         // destination folder where your files have to be save, defaults to "."
let ext = '.ne':                        // extension of your nedb files, defaults to ".nedb"

// three ways to use the module:
converter(dbLocation, nedbFolder, ext)  // OR
converter(dbLocation, nedbFolder)       // OR
converter(dbLocation)

About

Util for converting a sqlite database into a nedb database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published