Firebase Environment Setup -
Steps 1 – First, will need to CREATE Firebase Account and login in using https://console.firebase.google.com/and after login we land on welcome page.
Steps 2 – There are following steps involved
- Go to Recent project sections and
- Click on Add Project link and
- Select the project name (as per you) and
- Select the country/region and
- Finally click on CREATE PROJECT button.
- The Project ID is automatically created!
What is Project IDs?
The Project IDs are globally unique identifiers, used in Real-time Database URLs, Firebase Hosting subdomain, and more. You cannot change the project ID after you create it.
Steps 3 – Select the database options and see the database generated database https://fir-demo-63b16.firebaseio.com/
Steps 4 - Create basic HTML/JS App
<html>
<head>
<script src = "https://cdn.firebase.com/js/client/2.4.2/firebase.js"></script>
<script type = "text/javascript" src = "app/js/index.js"></script>
</head>
<body>
<div>Welcomr, You Anil!</div>
</body>
</html>
Use NPM or Bower - Use Firebase NPM or Bowers packages and Run the following commands
npm install firebase --save
And
bower install firebase
I hope you are enjoying with this post! Please share with you friends. Thank you so much!