1.4.0 • Published 11 years ago
level-sandbox v1.4.0
level-sandbox
A sandbox for hosting leveldbs.
Installation
$ npm install -g level-sandboxUsage
Start a sandbox server:
$ level-sandbox --port 4646 --auth foobarConnect to it from JS:
var net = require('net');
var multilevel = require('multilevel');
var db = multilevel.client();
var con = net.connect(4646);
con.pipe(db.createRpcStream()).pipe(con);
db.auth('foobar', function(err){
db.put('foo', 'bar', function(err){
db.get('foo', function(err, value){
console.log('foo: %s', value);
});
});
});API
Usage: sandbox.js [options] [path]
Options:
-h, --help output usage information
-V, --version output the version number
-p, --port <n> port to listen on ("random" for random)
-a, --auth <auth> authorization
-l, --log <events> log events to stdioPassword prompt
Set auth to the special value prompt to be asked for credentials, so they
don't show up in your terminal.
$ level-sandbox --auth prompt
auth: ********Logging
Those log events are available:
- tcp
- auth
- access
Get one or more of them on stdio:
$ level-sandbox --log tcp
$ level-sandbox --log auth,accessOr get all:
$ level-sandbox --log allDeploying
Use a tool like upstart or forever to make sure the process keeps running. Crashes are highly unlikely but might be caused by memory leaks or other kinds of bugs somewhere in the stack.
TODO
- change password without restart
- encrypt connection
License
MIT
