...

/

Configuring Firebase with Angular

Configuring Firebase with Angular

In this lesson, we'll configure Firebase with Angular.

We’ll need to integrate Firebase into our application. Luckily, Firebase is a popular solution among the Angular community. There’s an official library that’ll take care of the heavy lifting for us.

Running the installation script

In the command line, run the following command:

ng add @angular/fire

We’re introducing a new command called ng add. It’s similar to the npm install command, meaning it will install a package for you. It will run an installation script if one is available in the package.

Some packages help you integrate them into an ...