leveldb-mcpe
v1.0.1
Published
The Node Binding for LevelDB, updated with ZLib support for MCPE
Downloads
726
Readme
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());