https://github.com/fergiemcdowall/level-out
levelup to stdout
https://github.com/fergiemcdowall/level-out
Last synced: 22 days ago
JSON representation
levelup to stdout
- Host: GitHub
- URL: https://github.com/fergiemcdowall/level-out
- Owner: fergiemcdowall
- License: mit
- Created: 2015-10-07T12:28:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T13:05:00.000Z (about 3 years ago)
- Last Synced: 2025-03-28T01:02:17.926Z (about 1 month ago)
- Language: JavaScript
- Size: 136 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A simple utility for reading from a leveldb via [levelup](https://github.com/Level/levelup)
[![NPM version][npm-version-image]][npm-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url]
## Usage
Install with `npm install` and then use like so:
```
Usage: level-out [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:
```bash
level-out myDBName
```...to write to and delete from a database- check out [level-in](https://www.npmjs.com/package/level-in)
This package works with leveldbs generated by `[email protected]` and higher
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
[license-url]: LICENSE[npm-url]: https://npmjs.org/package/level-out
[npm-version-image]: http://img.shields.io/npm/v/level-out.svg?style=flat
[npm-downloads-image]: http://img.shields.io/npm/dm/level-out.svg?style=flat[travis-url]: http://travis-ci.org/fergiemcdowall/level-out
[travis-image]: http://img.shields.io/travis/fergiemcdowall/level-out.svg?style=flat