Create a real-time chat application using React JS and Firebase

Google Firebase service provides us to create awesome web applications without having a server. So, we are going to create our chat application using Firebase where we will use authentication, firestore, and hosting. So, without wasting any time, let’s get started.

Gyan 🧑‍💻
6 min readOct 3, 2021

--

Google Firebase service provides us to create awesome web applications without having a server. So, we are going to create our chat application using Firebase where we will use authentication, firestore, and hosting. So, without wasting any time, let’s get started.

Create a react project:

I am assuming that you have installed node js installed on your system. If not, then download and install it first. To create a react project, run this command-

npx create-react-app firebase-chat-app

--

--