1.0.1 • Published 8 years ago

leveldb-mcpe v1.0.1

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

node-leveldb-mcpe

Note: This is under heavy development, things will probably break so don't use this in production

The Node Binding for LevelDB, updated with ZLib support for MCPE

Installation

We've made it easy, just:

$ git clone --recursive https://github.com/mhsjlw/node-leveldb-mcpe.git
$ npm install

Usage

It's not hard, trust me...

var leveldb=require('leveldb-mcpe');

console.log(leveldb.open("test"));
console.log(leveldb.put("key", "value"));
console.log(leveldb.get("key"));
console.log(leveldb.delete("key"));
console.log(leveldb.close());