Geyser
Publish and subscribe to streams of data over MongoDB.
Usage
Source Node.js process:
;; // Create an Observer which writes to a 'ticks' collection in MongoDBconst ticks = MongoObserver // Subscribe our "ticks" observer to a streamObservable;
Listening Node.js process:
; // create a const ticks = MongoObservable // Subscribe to the "ticks" streamticks; // 1// 2// 3// ...