Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed React Authentication (2019)!
You have completed React Authentication (2019)!
Instruction
Run the Express Server
In this step, you will get the backend of the application up and running.
Open a second Terminal (or console) window and navigate inside the api folder.
To install the necessary dependencies, run the following command:
npm install
Start the server. After the dependencies finish downloading and installing, run the following command to start the Express application:
npm start
Make su...