- Node JS
- Express JS
- MongoDB
- Go to the official download page of NodeJS
- In the downloads page, you will see various versions of Node. All you need to do is, click on the box, suitable to your system configurations (MAC, Windows Or Linux).
- Once you have successfully downloaded the software, go to the downloaded file, and double-click on it.
- As soon as you click on the file, an installation wizard will come up. Select ‘Next’ and move further with the installation.
- After the installation is done, NodeJs is successfully set up. You can run
node --version
to confirm the installation.
- Go to the official download page and download the installer for your OS.
- Proceed with the installation step as recommended by the installer.
⚠️ It's not recommended to enable settings not recommended by the installer by default. - Git will be installed on your system, By running
git --version
you can verify the success of the installation.
- Since you have already got NodeJS installed, we can take the help of the Node Package Manager (NPM), to proceed with the installation of ExpressJS.
- Go to your terminal and run the command
npm install express
- The node package manager will install the latest version of ExpressJS on your system.
- Create a new folder where you would like the files of the repository to go.
- open the windows terminal on the diectory and run
git clone https://github.com/AMU-Code-Squad/food-up
- Done!🎉 ,Git will clone all the files into your system.
As we have now cloned the repository, it's time to get all the dependencies required to run the app, to do this simply run the following two commands in the terminal
- For Windows -
npm install -g --force nodemon
- For Linux, run
sudo npm install -g --force nodemon
- Run
npm install
in the home directory, to let npm install all the essential packages from package.json - Finally! To run the project on your system, type
nodemon app.js
on the terminal and view the site onhttp://localhost:3000/
🥳
If You are a contributor in this project, Be sure to add your name on https://amu-code-squad.github.io 😎