November 2017
Beginner to intermediate
288 pages
7h 33m
English
In order to fully integrate Firebase into our frontend project, which is typically composed of nothing but .html, .css, and .js files, we will need to follow the given steps:
<script src="https://www.gstatic.com/firebasejs/3.9.0/firebase.js> </script> <script> // Initialize Firebase // TODO: Replace with your project's customized code snippet var config = { apiKey: "<API_KEY>", authDomain: "<PROJECT_ID>.firebaseapp.com", databaseURL: "https://<DATABASE_NAME>.firebaseio.com", storageBucket: "<BUCKET>.appspot.com", messagingSenderId: "<SENDER_ID>", }; firebase.initializeApp(config); </script>
So, what we've just done is simply imported the Firebase ...
Read now
Unlock full access