Welcome buddy ! This blog post will teach you how to build a blog site using React and Firebase. First we will learn , Initial setup of Firebase. and then we connect our project to firebase. and third we will code our project. so lets start First section 1. Setup of Firebase Go to firebase website and signup. and than go on to the firebase console and create new project. Now Enter the project name , and click on continue. it will lead you to next screen. click on continue and you will land on second screen where you can select analytics account if opted for google analytics on the previous screen and click continue. Your Firebase Project is ready. Now go to project setting to connect React Project to Firebase. 2. Build React app Go to your terminal and Create New React App using npx create-react-app@5.0.0 Blog-React-app cd Blog-React-app npm start Our react app is ready now we have to connect it to our firebase project. So first thing is to install firebase node modules in our pr...