leveldb-mcpe

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

Usage no npm install needed!

<script type="module">
  import leveldbMcpe from 'https://cdn.skypack.dev/leveldb-mcpe';
</script>

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());