0.3.4 • Published 8 years ago

pal v0.3.4

Weekly downloads
19
License
MIT
Repository
github
Last release
8 years ago

Pal NPM version Build status

Key-value database inspired by PalDB.

Installation

$ npm install pal

pal is compatible with all node.js versions above 2.0.

Documentation

Examples

var pal = require('pal');
  • Create a database:

    var ws = pal.Db.createWriteStream('sample.pal')
    ws.write({key: 12, value: 'twelve'})
    ws.write({key: 48, value: 'forty-eight'})
    ws.end();
  • Load a database and retrieve values:

    var db = new pal.Db('sample.pal');
    var str = db.get(48); // 'forty-eight'
0.3.4

8 years ago

0.3.3

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.2

8 years ago

0.0.1

9 years ago