You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Firebase Fundamentals: Getting Started with Firebase Authentication on the Web
2
+
3
+
This is the source code used in this video: [Getting started with Firebase Authentication on the web](https://youtu.be/rbuSx1yEgV8).
4
+
5
+
## Prerequisites
6
+
7
+
* Install the Firebase CLI tools and the Firebase Emulator suite ([instructions](https://firebase.google.com/docs/emulator-suite/install_and_configure))
8
+
9
+
## How to use
10
+
11
+
1. Clone the repository
12
+
2. Navigate into the root folder of this project
13
+
3. Install the dependencies
14
+
15
+
```bash
16
+
$ npm install
17
+
```
18
+
19
+
4. Run webpack to bundle your code:
20
+
21
+
```bash
22
+
$ npx webpack
23
+
```
24
+
25
+
5. Run the Firebase Emulator to host your app locally:
26
+
27
+
```bash
28
+
$ firebase emulators:start
29
+
```
30
+
31
+
6. Open `http://localhost:5001`in your browser
32
+

33
+
7. Sign up using an email address and password of your choice (e.g. `[email protected]`)
34
+
8. You should now be signed in
35
+

36
+
9. Navigate to `http://localhost:4000/auth` to see the newly created user in the Firebase Authentication Emulator UI
37
+

38
+
10. Go back to the app, and sign out
39
+
11. Sign in using the credentials you used to create the test account
0 commit comments