Socket
Book a DemoInstallSign in
Socket

multilevel-http

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multilevel-http

Access a leveldb instance from multiple processes via HTTP

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

multilevel-http

Access a leveldb instance from multiple processes via HTTP.

A limitation of LevelDB is that only one process is allowed access to the underlying data. multilevel-http exports a LevelDB instance over http.

Installation

npm install multilevel-http

API

Server:

var multilevel = require('multilevel')
// db = levelup instance or path to db
var server = multilevel.server(db, options)
server.listen(5000)

Client:

var multilevel = require('multilevel')
var db = multilevel.client('http://localhost:5000/')
// now you have the complete levelUP api!
// ...except for events, for now

CLI

$ sudo npm install -g multilevel-http
$ multilevel-http -p 5000 path/to.db

HTTP API

Params

Use get-params to pass options to LevelDB, like ?encoding=json

GET /meta

Get meta information about the DB.

// GET /meta
{
  "compression" : false,
  "cacheSize" : 8 * 1024 * 1024,
  "encoding" : 'utf8',
  "keyEncoding" : 'utf8',
  "valueEncoding" : 'utf8',
  "path" : path
}

GET /data/:key

Get tha value stored at :key.

// GET /data/foo
bar

POST /data/:key

Store data at :key.

// POST /data/foo bar
"ok"

DEL /data/:key

Delete data stored at :key.

// DEL /data/foo
"ok"

PUT /data

Store many values batched.

/* PUT /data [
  { key : 'bar', value : 'baz' },
  { key : 'foo', value : 'bar' }
] */

POST /data

Do many operations batched.

/* PUT /data [
  { type : 'put', key : 'bar', value : 'baz' },
  { type : 'del', key : 'foo' }
] */

GET /approximateSize/:from..:to

Get an approximation of disk space used to store the data in the given range.

// GET /approximateSize/a..z
123

GET /data

Get all the data.

// GET /data/12
[
  { key : 'bar', value : 'baz' },
  { key : 'foo', value : 'bar' },
  /* ... */
]

GET /range/:from..:to

Get all data in the given range.

// GET /range/a..c
[ { key : 'bar', value : 'baz' } ]

GET /keys

Get all the keys.

// GET /keys
[ 'bar', 'foo' ]

GET /keys/:from..:to

Get all the keys in the given range.

// GET /keys/a..c
[ 'bar' ]

GET /values

Get all the values.

// GET /values
[ 'baz', 'bar' ]

GET /values/:from..:to

Get all the values in the given range.

// GET /values/a..c
[ 'baz' ]

Server API

// server
var multilevel = require('multilevel-http')('my.db')
multilevel.listen(3000)

multilevel.server(path|db, meta)

server#listen(port)

Start serving on the given port.

server#{db,meta}

The stored db and meta data exposed.

License

(MIT)

Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

leveldb

FAQs

Package last updated on 12 Mar 2013

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