0.0.0 • Published 9 years ago

firebase-rx v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

firebase-rx

This repo brings this Gist to npm.

Usage

var FirebaseRx = require('firebase-rx');

var source =
  new FirebaseRx("https://<your firebase>.firebaseio.com")
    .observe('<event type>');

console.log(source instanceof Rx.Observable);

source.subscribe(function (changeData) {
  // If event type is 'value', changeData is a DataSnapshot
  // Otherwise, changeData is:
  // {
  //   snapshot: DataSnapshot, 
  //   prevName: optional string of previous child location
  // }
});
0.0.0

9 years ago