@bkrith/multilevel v1.2.4
multilevel
Expose a levelDB over the network, to be used by multiple process.
Installing
npm install @bkrith/multilevel
Usage
Create a Server and start listening:
const multilevel = require('@bkrith/multilevel');
const db = new multilevel();
db.level('./myDB');
db.listen({ port: 22500 });
Connect from the client and use all the leveldb commands as promises:
const multilevel = require('@bkrith/multilevel');
const db = new multilevel();
db.connect({
address: '127.0.0.1',
port: 22500
});
db.get('foo')
.then((value) => {
console.log(value);
})
.catch((err) => {
console.log(err);
});
And at last you can close the connection and the database:
db.stop();
Select level module
By default multilevel use level module:
db.level(location[, options[, callback]]);
But you can change through "levelModule" the database instance, for example:
db.levelModule = levelup(leveldown('./myDB'));
TCP Socket
You have access on TCP Socket events:
// Server side connection
db.on('connect', (socket) => {
console.log('client connected', socket.remoteAddress, ':', socket.remotePort);
});
db.on('listen', (port) => {
console.log('listen on', port);
});
// Client side connection
db.on('client', (socket) => {
console.log('connected on Server', socket.remoteAddress, ':', socket.remotePort);
});
db.on('close', (socket) => {
console.log('close');
});
db.on('error', (err) => {
console.log(err);
});
db.on('data', (data) => {
console.log(data);
});
Notice: Event 'data' returns Buffer object which is coded and not processed yet by the stream.
level API
For options specific to leveldown
and level-js
("underlying store" from here on out), please see their respective READMEs.
- level()
- db.put()
- db.get()
- db.del()
- db.batch() (array form)
- db.isOpen()
- db.isClosed()
- db.createReadStream()
- db.createKeyStream()
- db.createValueStream()
db.level(location[, options])
The main entry point for creating a new levelup
instance.
location
is a string pointing to the LevelDB location to be opened or in browsers, the name of theIDBDatabase
to be opened.options
is passed on to the underlying store.options.keyEncoding
andoptions.valueEncoding
are passed toencoding-down
, default encoding is'utf8'
Calling db.level('my-db')
will also open the underlying store. This is an asynchronous operation which return a promise.
The constructor function has a .errors
property which provides access to the different error types from level-errors
. See example below on how to use it:
db.level('my-db', { createIfMissing: false }, function (err, db) {
if (err instanceof level.errors.OpenError) {
console.log('failed to open database')
}
})
Note that createIfMissing
is an option specific to leveldown
.
db.put(key, value[, options])
put() is the primary method for inserting data into the store. Both key
and value
can be of any type as far as levelup
is concerned.
options
is passed on to the underlying storeoptions.keyEncoding
andoptions.valueEncoding
are passed toencoding-down
, allowing you to override the key- and/or value encoding for thisput
operation.
db.get(key[, options])
get() is the primary method for fetching data from the store. The key
can be of any type. If it doesn't exist in the store then the promise will receive an error.
db.get('foo')
.then((value) => {
// .. handle `value` here
})
.catch((err) => {
// Do something with error
});
options
is passed on to the underlying store.options.keyEncoding
andoptions.valueEncoding
are passed toencoding-down
, allowing you to override the key- and/or value encoding for thisget
operation.
db.del(key[, options])
del() is the primary method for removing data from the store.
db.del('foo')
.catch((err) {
if (err)
// handle I/O or other error
});
options
is passed on to the underlying store.options.keyEncoding
is passed toencoding-down
, allowing you to override the key encoding for thisdel
operation.
db.batch(array[, options])
(array form)
batch() can be used for very fast bulk-write operations (both put and delete). The array
argument should contain a list of operations to be executed sequentially, although as a whole they are performed as an atomic operation inside the underlying store.
Each operation is contained in an object having the following properties: type
, key
, value
, where the type is either 'put'
or 'del'
. In the case of 'del'
the value
property is ignored. Any entries with a key
of null
or undefined
will cause an error to be returned on the callback
and any type: 'put'
entry with a value
of null
or undefined
will return an error.
var ops = [
{ type: 'del', key: 'father' },
{ type: 'put', key: 'name', value: 'Yuri Irsenovich Kim' },
{ type: 'put', key: 'dob', value: '16 February 1941' },
{ type: 'put', key: 'spouse', value: 'Kim Young-sook' },
{ type: 'put', key: 'occupation', value: 'Clown' }
]
db.batch(ops)
.then((ok) => {
console.log('Great success dear leader!')
})
.catch((err) {
return console.log('Ooops!', err);
});
options
is passed on to the underlying store.options.keyEncoding
andoptions.valueEncoding
are passed toencoding-down
, allowing you to override the key- and/or value encoding of operations in this batch.
db.isOpen()
A levelup
instance can be in one of the following states:
- "new" - newly created, not opened or closed
- "opening" - waiting for the underlying store to be opened
- "open" - successfully opened the store, available for use
- "closing" - waiting for the store to be closed
- "closed" - store has been successfully closed, should not be used
isOpen()
will return true
as promise only when the state is "open".
db.isClosed()
isClosed()
will return true
as promise only when the state is "closing" or "closed", it can be useful for determining if read and write operations are permissible.
db.createReadStream([options])
Returns a Readable Stream of key-value pairs. A pair is an object with key
and value
properties. By default it will stream all entries in the underlying store from start to end. Use the options described below to control the range, direction and results.
db.createReadStream()
.on('data', function (data) {
console.log(data.key, '=', data.value)
})
.on('error', function (err) {
console.log('Oh my!', err)
})
.on('close', function () {
console.log('Stream closed')
})
.on('end', function () {
console.log('Stream ended')
})
You can supply an options object as the first parameter to createReadStream()
with the following properties:
gt
(greater than),gte
(greater than or equal) define the lower bound of the range to be streamed. Only entries where the key is greater than (or equal to) this option will be included in the range. Whenreverse=true
the order will be reversed, but the entries streamed will be the same.lt
(less than),lte
(less than or equal) define the higher bound of the range to be streamed. Only entries where the key is less than (or equal to) this option will be included in the range. Whenreverse=true
the order will be reversed, but the entries streamed will be the same.reverse
(boolean, default:false
): stream entries in reverse order. Beware that due to the way that stores like LevelDB work, a reverse seek can be slower than a forward seek.limit
(number, default:-1
): limit the number of entries collected by this stream. This number represents a maximum number of entries and may not be reached if you get to the end of the range first. A value of-1
means there is no limit. Whenreverse=true
the entries with the highest keys will be returned instead of the lowest keys.keys
(boolean, default:true
): whether the results should contain keys. If set totrue
andvalues
set tofalse
then results will simply be keys, rather than objects with akey
property. Used internally by thecreateKeyStream()
method.values
(boolean, default:true
): whether the results should contain values. If set totrue
andkeys
set tofalse
then results will simply be values, rather than objects with avalue
property. Used internally by thecreateValueStream()
method.
Legacy options:
start
: instead usegte
end
: instead uselte
Underlying stores may have additional options.
db.createKeyStream([options])
Returns a Readable Stream of keys rather than key-value pairs. Use the same options as described for createReadStream to control the range and direction.
You can also obtain this stream by passing an options object to createReadStream()
with keys
set to true
and values
set to false
. The result is equivalent; both streams operate in object mode.
db.createKeyStream()
.on('data', function (data) {
console.log('key=', data)
})
// same as:
db.createReadStream({ keys: true, values: false })
.on('data', function (data) {
console.log('key=', data)
})
db.createValueStream([options])
Returns a Readable Stream of values rather than key-value pairs. Use the same options as described for createReadStream to control the range and direction.
You can also obtain this stream by passing an options object to createReadStream()
with values
set to true
and keys
set to false
. The result is equivalent; both streams operate in object mode.
db.createValueStream()
.on('data', function (data) {
console.log('value=', data)
})
// same as:
db.createReadStream({ keys: false, values: true })
.on('data', function (data) {
console.log('value=', data)
})
Author
- Vassilis Kritharakis - Initial work - bkrith
Licenses
This project is licensed under the MIT License - see the LICENSE file for details