Leveldb over http
or https
.
var http = require('http');
var levelweb = require('levelweb');
var db = require('level')('./db');
var opts = { prefix: '/' };
//
// like this...
//
http.createServer(levelweb(db, opts)).listen(8080);
//
// or like this... since the levelweb() function just
// returns a function that accepts request and response
// streams.
//
var level = levelweb(db, opts);
http.createServer(function(req, res) {
level(req, res);
}).listen(8080);
curl -XPUT "localhost:8080/keyname" --data "somedata"
value
curl -XGET "localhost:8080/keyname"
curl -XDELETE "localhost:8080/keyname"
All of the options in the query string are optional.
curl "localhost:8080/?gte=users<e=users~&limit=10&reverse=true&keys=true&valyes=true"
curl "localhost:8080/?tail=true&old=false&live=true"