An open API service indexing awesome lists of open source software.

https://github.com/serapath/sublevel-streams

use `level-sublevel` like data structure that utilizes streams for data bindings in frontend components
https://github.com/serapath/sublevel-streams

Last synced: about 1 year ago
JSON representation

use `level-sublevel` like data structure that utilizes streams for data bindings in frontend components

Awesome Lists containing this project

README

          

# sublevel-streams
use `level-sublevel` like data structure that utilizes streams for data bindings in frontend components

# usage
`npm install sublevel-streams`

```js
var sublevelStreams = require('sublevel-streams')

var o = { state: {}, subDBs: {}, prefix: [] }
var db = sublevelStreams(o)

console.log(o)

// @TODO: show usage

```