Starting the Backend
If you have successfully completed the previous sections, your .env
file should look like this:
Do not forget to replace all placeholders (e.g. <CLIENT-ID>) with their correct values.
We are all set to start the backend code.
First, install the dependencies using npm i
command.
Once that is finished, you can start the server using npm start
and you should get the following output
If for some reason you got a different output, please make sure that you have correctly followed the instructions from previous sections or you can open an issue.
That's it! The backend server is now running. If you are comfortable enough with backend technologies you can start developing, or you can browse the following sections where we go through a small example of a backend service.
Happy coding 🎉!
Last updated