npm.io
1.0.5 • Published 7 years ago

particle.db

Licence
MIT
Version
1.0.5
Deps
0
Size
9 kB
Vulns
0
Weekly
0
DeprecatedThis package is deprecated

Particle.db

About

Particle.db is a powerful, fast, easy-to-use Node.js database.

  • Powerful
  • Productive
  • Efficient
  • Easy-to-use
  • Object-oriented

Installation

npm i particle.db

Example

All the examples can be found inside docs/examples folder

const Particle = require('particle.db');
const db = new Particle.Database();

db.set('account_123456789', { name: 'Bolt', credits: 4, id: '123456789' });
db.get('account_123456789').then((val) => console.log(val));

Credits