1.0.0 • Published 6 years ago

berrydb v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

berryDB

logo

Description

This is a database.
All said that the berry is sweet and delicious,but this db is "sweet and delicious" too.
It's small, convenient and quick.

Philosophy

We use a thought:KWS(key word storage).

Usage

After download in your file,write:

// require berry
var berry = require("berry");

Can use this module.

API

// The demo of function add.
var berry = require("berry");
berry.write.add({db: "berry-db",base: "authors",type: "arr",value: "yhzheng"});
// The demo of function del.
var berry = require("berry");
berry.write.del({db: "berry-db",base: "authors",type: "arr",value: "yhzheng"});