How to create and set up a Firebase web project

Anna Ikoki
1 min readApr 20, 2022

Here are the quick steps to follow:

  1. Login to your Google account, or create one
  2. Go to URL firebase.google.com
  3. Click Go to console on the top right corner of your firebase page
  4. Click Create Project and type the name of your project, click next to choose your location , agree to terms and then click Create Project
  5. Add Firebase to your app, by clicking icon </> which stands for the web project.

6. Register app nickname by typing the name of your app

7. Go to your terminal and make sure you have node and npm installed.

8. Install firebase npm install firebase

9. Create a firebase.js file in your project, and add the Firebase SDK code provided in the Firebase console.

10. On the firebase page, click go to Console

You can dive more into web firebase here for more setup options.

--

--