Skip to content

rla/phantomjs-dirty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phantomjs-dirty

A dirty key-value database clone for PhantomJS and its synchronous CommonJS Filesystem/A IO. Database files are fully compatible between implementations.

Warning

Multi-process write usage of the same database file will corrupt it. There are is no file locking support in CommonJS Filesystem/A.

Installing

The package can be installed from NPM:

npm install phantomjs-dirty

Example

var dirty = require('./node_modules/phantomjs-dirty');

var db = dirty.open('test.dirty');

db.set('a-key', { a: 1 });

console.log(db.get('a-key'));

db.forEach(function(key, val) {

    console.log(key + ': ' + val);
});

Running tests

For running tests, development dependencies must be installed first.

npm install
make test

License

The MIT License.

About

Dirty-compatible key-value database for PhantomJS

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published