0.1.3 • Published 11 years ago

levelhud v0.1.3

Weekly downloads
73
License
-
Repository
github
Last release
11 years ago

LevelHUD

A front-end for exploring LevelDB stores. Uses websockets to stream data to the browser on the fly.

npm install levelhud

Requires levelup. Since only one connection to LevelDB can be open at a time, the LeveHUD server must be started from within your app to share the client instance:

var levelup  = require('levelup')
  , levelgui = require('levelup-gui')

var poneys = levelup('/etc/leveldb/poneys', { encoding: 'json' })

new levelgui().use(poneys).listen(4420)

// var app = express()
// yada yada yada...

Point your browser to localhost:4420. That is all.

Using multiple databases

new levelgui(poneys).listen(4420)
new levelgui(unicorns).listen(4421)

screenshot

License

http://ricardo.mit-license.org

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago