palderson / firebasetest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Firebase React Native App

Logo

7/6/16 - Updated to 3.1.0 of the Firebase SDK

With the new 3.1.0 SDK, Firebase Database and Firebase Auth, now work with React Native. Rather than use new Firebase(url) like with the old SDK, you now configure firebase with firebase.initializeApp(config), and use the new firebase.database().ref() method.

const React = require("react-native");
const firebase = require("firebase");

// Initialize Firebase
const firebaseConfig = {
  apiKey: "<YOUR-API-KEY>",
  authDomain: "<YOUR-AUTH-DOMAIN>",
  databaseURL: "<YOUR-DATABASE-URL>",
  storageBucket: "",
};
firebase.initializeApp(firebaseConfig);

// Create a reference with .ref() instead of new Firebase(url)
const rootRef = firebase.database().ref();
const itemsRef = rootRef.child('items');

About


Languages

Language:JavaScript 47.5%Language:Objective-C 31.7%Language:Python 11.8%Language:Java 9.0%