Socket
Book a DemoInstallSign in
Socket

level-sandbox

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-sandbox

Host your LevelDB inside a sandbox

latest
Source
npmnpm
Version
1.4.0
Version published
Maintainers
1
Created
Source

level-sandbox

A sandbox for hosting leveldbs.

build status

Installation

$ npm install -g level-sandbox

Usage

Start a sandbox server:

$ level-sandbox --port 4646 --auth foobar

Connect 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 stdio

Password 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,access

Or get all:

$ level-sandbox --log all

Deploying

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

FAQs

Package last updated on 09 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts