Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

level-out

fergiemcdowall93MIT1.0.1

leveldb to stdout

level, stdout

readme

A simple utility for reading from a leveldb via levelup

NPM version MIT License Build Status

Usage

Install globally with npm install -g level-out and then use like so:


  Usage: level-out <databaseName> [options]

  Options:

    -h, --help         output usage information
    -V, --version      output the version number
    -k, --key [value]  specify a key
    -g, --gte [value]  specify start of a key range
    -l, --lte [value]  specify end of a key range

To read the contents of a database, you would do something like:

level-out myDBName

...to write to and delete from a database- check out level-in

This package works with leveldbs generated by `level@3.x.x` and higher