For development, you will only need Node.js, a node global package, npm and a text editor.
-
Just go on official Node.js website and download the installer. Also, be sure to have
gitavailable in your PATH,npmmight need it (You can find git here). -
You can install nodejs and npm easily with apt install, just run the following commands.
$ sudo apt install nodejs $ sudo apt install npm -
You can install nodejs and npm easily with brew install, just run the following commands.
$ brew install node
$ git clone https://github.com/Emeka-web-dev/user-authentication-application.git
$ cd user-authentication-application
- Run
npm run devto start the app in development mode (app runs on PORT 8080 by default). - Run
npm run buildto build the app for production. - Run
npm startto start the app (app runs on PORT 8080 by default).
- PostgresSQL database is used for this project.
- Prisma ORM is used to interact with the database.