The leading realtime database. Docs here.
If you can spare 41 seconds, please check this video of the demo app in action:
- you need to store JSON data in the cloud,
- you want to sync that data to other devices and platforms,
- you want to optionally protect that data by having users log in,
- you want to update clients at the moment the data changes (think chat and multiplayer games).
NativeScript 1.3.0 (tns --version
) is required for smooth installation, so please upgrade if you need to.
Head on over to firebase.com and sign up for a free account.
Your first 'Firebase' will be automatically created and made available via a URL
like https://resplendent-fire-4211.firebaseio.com/
.
From the command prompt go to your app's root folder and execute:
tns plugin add nativescript-plugin-firebase
If you want a quickstart, clone our demo app (the one in the YouTube video). And here's the comprehensive list of supported functions:
var firebase = require("nativescript-plugin-firebase");
firebase.init({
url: 'https://resplendent-fire-4211.firebaseio.com'
}).then(
function (instance) {
console.log("firebase.init done");
},
function (error) {
console.log("firebase.init error: " + error);
}
);
All further examples assume firebase
has been required.
Also, all functions support promises, but we're leaving out the .then()
stuff for brevity where it doesn't add value.
Data is stored as JSON data at a specific path (which is appended to the URL you passed to init
).
If you want to add data to a known path use this, otherwise use push
(see below).
The plugin will take care of serializing JSON data to native data structures.
// to store a JSON object
firebase.setValue(
'/companies',
{'foo':'bar'}
);
// to store an array of JSON objects
firebase.setValue(
'/companies',
[
{name: 'Telerik', country: 'Bulgaria'},
{name: 'Google', country: 'USA'}
]
);
This function will store a JSON object at path <Firebase URL>/users/<Generated Key>
firebase.push(
'/users',
{
'first': 'Eddy',
'last': 'Verbruggen',
'birthYear': 1977,
'isMale': true,
'address': {
'street': 'foostreet',
'number': 123
}
}
).then(
function (result) {
console.log("created key: " + result.key);
}
);
Firebase supports querying data and this plugin does too, since v2.0.0.
Let's say we have the structure as defined at setValue
, then use this query to retrieve the companies in country 'Bulgaria':
var onQueryEvent = function(result) {
// note that the query returns 1 match at a time
// in the order specified in the query
if (!result.error) {
console.log("Event type: " + result.type);
console.log("Key: " + result.key);
console.log("Value: " + JSON.stringify(result.value));
}
};
firebase.query(
onQueryEvent,
"/companies",
{
// set this to true if you want to check if the value exists or just want the event to fire once
// default false, so it listens continuously
singleEvent: true,
// order by company.country
orderBy: {
type: firebase.QueryOrderByType.CHILD,
value: 'country' // mandatory when type is 'child'
},
// but only companies named 'Telerik'
// (this range relates to the orderBy clause)
range: {
type: firebase.QueryRangeType.EQUAL_TO,
value: 'Bulgaria'
},
// only the first 2 matches
// (note that there's only 1 in this case anyway)
limit: {
type: firebase.QueryLimitType.LAST,
value: 2
}
}
);
For supported values of the orderBy/range/limit's type
properties, take a look at the firebase-common.d.ts
TypeScript definitions in this repo.
To listen for changes in your database you can pass in a listener callback function.
You get to control which path inside you database you want to listen to, by default it's /
which is the entire database.
The plugin will take care of serializing native data structures to JSON data.
var onChildEvent = function(result) {
console.log("Event type: " + result.type);
console.log("Key: " + result.key);
console.log("Value: " + JSON.stringify(result.value));
};
// listen to changes in the /users path
firebase.addChildEventListener(onChildEvent, "/users");
The difference with addChildEventListener
is explained here.
The link is for the iOS SDK, but it's the same for Android.
var onValueEvent = function(result) {
console.log("Event type: " + result.type);
console.log("Key: " + result.key);
console.log("Value: " + JSON.stringify(result.value));
};
// listen to changes in the /companies path
firebase.addValueEventListener(onValueEvent, "/companies");
You can remove the entire database content by passing in '/' as param, but if you only want to wipe everything at '/users', do this:
firebase.remove("/users");
v 1.1.0 of this plugin adds the capability to log your users in. Either anonymously or by email and password. You need to add support for those features in your Firebase instance at the 'Login & Auth' tab.
You can expect more login mechanisms to be added in the future.
firebase.login({
// note that you need to enable anonymous login in your firebase instance
type: firebase.LoginType.ANONYMOUS
}).then(
function (result) {
// the result object has these properties: uid, provider, expiresAtUnixEpochSeconds, profileImageURL, token
JSON.stringify(result);
},
function (errorMessage) {
console.log(errorMessage);
}
)
firebase.login({
// note that you need to enable email-password login in your firebase instance
type: firebase.LoginType.PASSWORD,
email: '[email protected]',
password: 'theirpassword'
}).then(
function (result) {
// the result object has these properties: uid, provider, expiresAtUnixEpochSeconds, profileImageURL, token
JSON.stringify(result);
},
function (errorMessage) {
console.log(errorMessage);
}
)
firebase.createUser({
email: '[email protected]',
password: 'firebase'
}).then(
function (result) {
dialogs.alert({
title: "User created",
message: "userid: " + result.key,
okButtonText: "Nice!"
})
},
function (errorMessage) {
dialogs.alert({
title: "No user created",
message: errorMessage,
okButtonText: "OK, got it"
})
}
)
Shouldn't be more complicated than:
firebase.logout();
It's kinda cool to manipulate data while using multiple devices or your device and the Firebase Dashboard. You will instantly see the update on the other end. The Firebase Dashboard can be reached by simply loading your Firebase URL in a web browser.
tns emulate ios --device iPhone-6s
tns emulate android --geny "Nexus 6_23"
or start a geny emulator first and do: tns run android
- Add support for
removeEventListener
. - Possibly add more login mechanisms.
The starting point for this plugin was this great Gist by John Bristowe.