Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
subleveldown
Advanced tools
Split a levelup database into sublevels with their own keyspace, encoding and events
Split a
levelup
database into sublevels with their own keyspace, encoding and events.
If you are upgrading: please see UPGRADING.md.
var sub = require('subleveldown')
var level = require('level')
var db = level('db')
var test = sub(db, 'test') // test is just a regular levelup
var test2 = sub(db, 'test2')
var nested = sub(test, 'nested')
test.put('hello', 'world', function() {
nested.put('hi', 'welt', function() {
// will print {key:'hello', value:'world'}
test.createReadStream().on('data', console.log)
})
})
subleveldown
separates a levelup
database into sections - or sublevels from here on out. Think SQL tables, but evented, ranged and realtime!
Each sublevel is a levelup
of its own. This means it has the exact same interface as its parent database, but its own keyspace and events. In addition, sublevels are individually wrapped with encoding-down
, giving us per-sublevel encodings. For example, it's possible to have one sublevel with Buffer keys and another with 'utf8'
encoded keys. The same goes for values. Like so:
sub(db, 'one', { valueEncoding: 'json' })
sub(db, 'two', { keyEncoding: 'binary' })
There is one limitation, however: keys must encode to either strings or Buffers. This is not likely to affect you, unless you use custom encodings or the id
encoding (which bypasses encodings and thus makes it your responsibility to ensure keys are either strings or Buffers). If in that case you do pass in a key that is not a string or Buffer, it will be irreversibly converted to a string.
Authored by @mafintosh and inspired by level-sublevel
by @dominictarr, subleveldown
has become an official part of Level. As level-sublevel
is no longer under active development, we recommend switching to subleveldown
to get the latest and greatest of the Level ecosystem. These two modules largely offer the same functionality, except for hooks and per-batch prefixes.
subdb = sub(db[, prefix][, options])
Returns a levelup
instance that uses subleveldown to prefix the keys of the underlying store of db
. The required db
parameter must be a levelup
instance. Any layers that this instance may have (like encoding-down
or subleveldown
itself) are peeled off to get to the innermost abstract-leveldown
compliant store (like leveldown
). This ensures there is no double encoding step.
The prefix
must be a string. If omitted, the effective prefix is two separators, e.g. '!!'
. If db
is already a subleveldown-powered instance, the effective prefix is a combined prefix, e.g. '!one!!two!'
.
The optional options
parameter has the following subleveldown
specific properties:
separator
(string, default: '!'
) Character for separating sublevel prefixes from user keys and each other. Should be outside the character (or byte) range of user keys.open
(function) Optional open hook called when the underlying levelup
instance has been opened. The hook receives a callback which must be called to finish opening.Any other options
are passed along to the underlying levelup
and encoding-down
constructors. See their documentation for further details.
With npm do:
npm i subleveldown -S
Level/subleveldown
is an OPEN Open Source Project. This means that:
Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
See the Contribution Guide for more details.
To sustain Level
and its activities, become a backer or sponsor on Open Collective. Your logo or avatar will be displayed on our 28+ GitHub repositories, npm packages and (soon) our website. 💖
MIT © 2014-present Mathias Buus and Contributors.
[4.0.0] - 2019-04-06
If you are upgrading: please see UPGRADING.md
.
abstract-leveldown
from ^5.0.0
to ^6.0.2
(#61) (@vweevers)encoding-down
from ^5.0.3
to ^6.0.1
(#61) (@vweevers)levelup
from ^3.0.1
to ^4.0.1
(#61) (@vweevers)db
argument to abstract iterator (#61) (@vweevers)memdown
devDependency from ^3.0.0
to ^4.0.0
(#61) (@vweevers)nyc
devDependency from ^12.0.2
to ^13.3.0
(#61) (@vweevers)standard
devDependency from ^11.0.1
to ^12.0.1
(#61) (@vweevers)open()
and iterators bubble up (#61) (@vweevers)levelup
layer (#61) (@vweevers)coverage
directory (#61) (@vweevers)_batch()
checks (#61) (@vweevers)abstract-leveldown
constructor call (#61) (@vweevers)FAQs
Split a levelup database into sublevels with their own keyspace, encoding and events
The npm package subleveldown receives a total of 31,141 weekly downloads. As such, subleveldown popularity was classified as popular.
We found that subleveldown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.