node-red-nodes/storage/leveldb
dceejay 76f55af264 Update Package.json file for all node-red-nodes to be Apache-2.0 2015-05-29 14:58:34 +01:00
..
icons Update some icons 2014-06-04 22:29:09 +01:00
67-leveldb.html Update leveldb node to try to force topic to string for key. 2015-04-14 17:23:31 +01:00
67-leveldb.js leveldb reports not ready as error rather than warn, 2015-05-21 14:12:49 +01:00
LICENSE Add xmpp, suncalc and leveldb as npms... 2014-07-06 20:58:52 +01:00
README.md Add xmpp, suncalc and leveldb as npms... 2014-07-06 20:58:52 +01:00
package.json Update Package.json file for all node-red-nodes to be Apache-2.0 2015-05-29 14:58:34 +01:00

README.md

node-red-node-leveldb

A Node-RED node to read and write to a LevelDB database.

Install

Run the following command in the root directory of your Node-RED install

npm install node-red-node-leveldb

Usage

Allows basic access to a LevelDB database.

Uses LevelDB for a simple key value pair database.

There are two node to choose from...

Use one node to either put (store) the msg.payload to the named database file, using msg.topic as the key, or to delete information select delete in the properties dialogue and again use msg.topic as the key..

Use the other node to get, or retrieve the data already saved in the database.

Again use msg.topic to hold the key for the database, and the result is returned in msg.payload. If nothing is found for the key then null is returned.