mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
var async = require('asyncawait/async');
|
|
var OrbitClient = require('../src/OrbitClient');
|
|
var Timer = require('./Timer');
|
|
|
|
var host = 'localhost:3006';
|
|
var username = 'testrunner';
|
|
var password = '';
|
|
|
|
let run = (async(() => {
|
|
try {
|
|
// Connect
|
|
var orbit = OrbitClient.connect(host, username, password);
|
|
|
|
var timer = new Timer(true);
|
|
|
|
console.log("-------- KV store -------")
|
|
var channel = 'keyspace1'
|
|
// orbit.channel(channel, '').delete();
|
|
orbit.channel(channel).put("key3", "this is the value you're looking for: " + new Date().getTime());
|
|
var val = orbit.channel(channel).get("key3");
|
|
console.log("key3:", val);
|
|
|
|
orbit.channel(channel).put("key4", "this will be deleted");
|
|
var val2 = orbit.channel(channel).get("key4");
|
|
console.log("key4:", val2);
|
|
orbit.channel(channel).remove({ key: "key4" });
|
|
val2 = orbit.channel(channel).get("key4");
|
|
console.log("key4:", val2);
|
|
|
|
console.log("-------- EVENT log -------")
|
|
const c1 = 'c1';
|
|
orbit.channel(c1).delete();
|
|
var hash1 = orbit.channel(c1).add("hello1");
|
|
var hash2 = orbit.channel(c1).add("hello2");
|
|
|
|
var items = orbit.channel(c1).iterator({ limit: -1 }).collect();
|
|
items = items.map((e) => {
|
|
return { key: e.item.key, val: e.item.Payload };
|
|
});
|
|
console.log(JSON.stringify(items, null, 2));
|
|
|
|
console.log("--> remove", hash1);
|
|
orbit.channel(c1).remove({ key: hash1 });
|
|
|
|
items = orbit.channel(c1).iterator({ limit: -1 }).collect();
|
|
items = items.map((e) => {
|
|
return { key: e.item.key, val: e.item.Payload };
|
|
});
|
|
console.log(JSON.stringify(items, null, 2));
|
|
|
|
// You can also get the event based on its hash
|
|
var value = orbit.channel(c1).get(hash2);
|
|
console.log("key:", hash2, "value:", value);
|
|
|
|
console.log("--> remove", hash2);
|
|
orbit.channel(c1).remove({ key: hash2 });
|
|
|
|
items = orbit.channel(c1).iterator({ limit: -1 }).collect();
|
|
console.log(JSON.stringify(items, null, 2));
|
|
|
|
} catch(e) {
|
|
console.error("error:", e);
|
|
console.error(e.stack);
|
|
process.exit(1);
|
|
}
|
|
}))();
|
|
|
|
module.exports = run;
|