Creating a New Account

In this lesson, we'll create a new account by generating a service to communicate with Firebase.

We'll cover the following...

Firebase has an SDK for interacting with it. We can download the SDK by installing the firebase package, which we’ve already done. It will come with methods for signing in and creating users.

The method we’re interested in using is called createUserWithEmailAndPassword(). Information about this function can be found here.

There are two arguments: the email and password. The value returned by this function is a promise in which we’ll ...