firebase-rsvp
v0.0.7
Published
Firebase wrapper with RSVP's promises
Downloads
9
Readme
FirebaseRSVP
Firebase wrapper with RSVP's promises
Mostly abstracted out from geofire-js
Usage examples
Namespace
You can declare a namespace on your FirebaseRSVP
and it will be appended to any path for that Firebase ref.
Keys
A key can be a single string or an array of strings, either they will be compiled and joined with slashes.
Set
this.set(firebaseRef, "a", { b: "c" })
.then(function (value) {
// value is { b: "c" }
})
.catch(function (error) {
// error that occured while trying to set "a"
});
Get
this.get(firebaseRef, "a")
.then(function (value) {
// value is { b: "c" }
})
.catch(function (error) {
// error that occured while trying to get "a"
});
Update
this.update(firebaseRef, "a", { d: "e" })
.then(function (value) {
// value is { d: "e" } - only the updated part of "a"
// if you want the full value of "a", use get
return firebaseRef.get("a");
})
.then(function (value) {
// value is { b: "c", d: "e" }
})
.catch(function (error) {
// error that occured while trying to update or get "a"
});
Remove
this.remove(firebaseRef, "a")
.then(function () {
// nothing is returned
})
.catch(function (error) {
// error that occured while trying to remove "a"
});