Skip to content

Instantly share code, notes, and snippets.

@crcn
Created March 28, 2015 16:16
Show Gist options
  • Save crcn/00fbf8a52b8e70eade00 to your computer and use it in GitHub Desktop.
Save crcn/00fbf8a52b8e70eade00 to your computer and use it in GitHub Desktop.
var crudlet = require("crudlet");
var localstore = require("crudlet-local-storage");
var pubnub = require("crudlet-pubnub");
var localdb = localstore();
var pubdb = pubnub();
var allDbs = crudlet.parallel(localdb, pubdb);
crudlet.run(pubdb, "tail").pipe(crudlet.stream(localdb));
crudlet.run(allDbs, "insert", { data: { message: "hello world" }});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment