Package: wnpp Severity: wishlist Owner: Andrew Kelley <superjo...@gmail.com> X-Debbugs-CC: debian-devel@lists.debian.org
* Package name : node-levelup Version : 0.18.5 Upstream Author : Rod Vagg <r...@va.gg> * URL : https://github.com/rvagg/node-levelup * License : Expat Programming Lang: JavaScript Description : Fast & simple storage - a Node.js-style LevelDB wrapper LevelDB is a simple key/value data store built by Google, inspired by BigTable. It's used in Google Chrome and many other products. LevelDB supports arbitrary byte arrays as both keys and values, singular get, put and delete operations, batched put and delete, bi-directional iterators and simple compression using the very fast Snappy algorithm. . LevelUP aims to expose the features of LevelDB in a Node.js-friendly way. All standard Buffer encoding types are supported, as is a special JSON encoding. LevelDB's iterators are exposed as a Node.js-style readable stream a matching writeable stream converts writes to batch operations. . LevelDB stores entries sorted lexicographically by keys. This makes LevelUP's ReadStream interface a very powerful query mechanism. . Node.js is an event-based server-side JavaScript engine.