
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
simple-node-db
Advanced tools
A document database with query, insert, update, backup/restore and replication implemented on top of levelup, leveldown, and memdown.
_____ __ _ __ __ ____
/ __(_)_ _ ___ / /__ / |/ /__ ___/ /__ ___/ / /
_\ \/ / ' \/ _ \/ / -_) / / _ \/ _ / -_) / _ / _ \
/___/_/_/_/_/ .__/_/\__/ /_/|_/\___/\_,_/\__/ \_,_/_.__/
/_/
A database implementation on top of levelup, leveldown, and memdown. SimpleNodeDb leverages the document store aspects of level up to provide a data-model/domain centric implementation.
Models are stored as JSON strings with domain-scoped keys. For example a user data model's key of '12345' would have an associated domain key of 'user:12345'. So querying for users as opposed to orders or inventory parts is as easy as including records where keys begin with 'user:'.
Automatic model attributes include dateCreated, lastUpdated and version. The version attribute is used to enforce optimistic locking.
Typically SimpleNodeDb is well suited for small to medium datasets (less than 100K rows) or data stores that don't require complex querying. It also provides robust caching when used as an in-memory data store. To support more than 100K rows you should probably create alternate indexing schemes or stick with redis, mongo, or a traditional SQL database.
Note: levelup is a simple key/value store. It may be more appropriate to use this for simple, single user access storage. SimpleNodeDb is designed to work more as a formal domain data store with simulated domains that contain keyed JSON documents. For most use cases, it is more appropriate to use redis or another server based document store if multi-user access is required...
Note: Future changes: for now support goes back to node 4.x; the next release will require 6.x to support more es6 features.
$ npm install simple-node-db --save
Basic testing is in place for all implemented methods. Examples can be found under ./examples.
// create an in-memory database
const SimpleDb = require('simple-node-db');
let db = new SimpleDb({memory:true});
// create a file based database
db = new SimpleDb('/path/to/database');
// create a database with options
const options = {
path:'/my/db/path',
log:new Logger('db'),
readAfterChange:true // read-back record after insert/update; else return model
};
db = new SimpleDb( options );
// query for all list rows where the key begins with 'mydomain:'
const rowCallback = function(key, value) {
// put appropriate query conditions here
if ( key.indexOf('mydomain:') >= 0) ) {
// parse and return the value
return JSON.parse( value );
}
};
const completeCallback = function(err, list) {
if (err) throw err;
assert list.length === 25
};
const params = {
start:'mydomain:',
end:'mydomain:~' // the tilde insures all 'my domain' rows are found
};
db.query(params, rowCallback, completeCallback);
// query for all keys and dump to the console...
db.queryKeys( {}, console.log );
// create the key based on domain and model id
const key = db.createDomainKey( 'user', id );
// value is saved as a json object
const callback = function(err, model) {
if (err) throw err;
// do something with the model...
};
db.find( key, callback );
// a simple user model
Const user = {
id:'12345',
name:'Sam Sammyson',
email:'sam@sammyson.com',
status:'active'
};
// key is created for the 'user' domain
const key = db.createDomainKey( 'user', user.id )
const callback = function(err, model) {
if (err) throw err;
assert model.dateCreated;
assert model.lastUpdated === model.dateCreated;
assert model.version === 0;
};
// model must have an 'id' attribute
db.insert( key, model, callback );
// the version and lastUpdated attributes are automatically updated
const user = {
id:'12345',
dateCreated:new Date(),
lastUpdated:new Date(),
version:0,
name:'Sam Sammyson',
email:'sam@sammyson.com',
status:'active'
};
const key = db.createDomainKey( 'user', user.id )
const callback = function(err, model) {
if (err) throw err;
assert model.version === user.version + 1;
assert model.lastUpdated.getTime() > user.dateCreated.getTime();
};
// model must have an 'id' attribute
db.update( key, model, callback );
// very simple, merciless delete -- use at your own risk...
const callback = function(err) {
if (err) throw err;
};
db.delete( key, callback );
// create a model id from uuid without dashes
const id = db.createModelId();
assert id === '01BDA6RVHSFRQ2FKZ6FVJPFFSW';
const model = {
id:db.createModelId()
};
const key = db.createDomainKey( 'user', model.id );
assert key.contains( 'user:' );
assert key.contains( model.id );
assert key === 'user:01BDA6V2JGXN8WHTSF5DX8H21S';
// stream dump of keys and values row-by-row, CR/LF delimited
const filename = '/path/to/backup/file';
const callback = function(err, rowsWritten) {
if (err) throw err;
assert rowsWritten > 0;
};
db.backup( filename, callback );
// read the key/value file and batch put the rows; uses stream reader to
const callback = function(err, rowsRead) {
if (err) throw err;
assert rowsRead > 0;
};
const filename = '/path/to/my/backup';
db.restore( filename, callback );
// reports the domains and number of rows
db.stats( console.log );
db.close(function(err) {
log.info('db is now closed...');
});
db.open(function(err) {
log.info('db is now open...');
});
if (db.isInMemory()) {
log.info('database is in-memory, data will be lost if not backed up...');
}
A REPL is available to enable database manipulation from the node repl.
// creates a REPL for SimpleNoeDb and opens the database 'db'
// if db is null, then an in-memory db is opened
db = require('simple-node-db').createREPL( './mydb' );
db.stats() // shows the domains, row counts, etc
db.query() // dumps all the rows
db.queryKeys() // dumps all the keys
db.find('user:01BDA1K893NMBH2W1FFRD4W76A') // will return the user if it exists
// query for all users
db.query({start:'user:',end:'user:~'})
// or, an alternative to find all the users...
let rowcb = (key, value) => {
if (key.startsWith('user:')) {
return JSON.parse(value);
}
};
db.query({}, rowcb)
FAQs
A document database with query, insert, update, backup/restore and replication implemented on top of levelup, leveldown, and memdown.
We found that simple-node-db demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.