- Git Version Control (Download & Install)
https://git-scm.com/downloads
- Node JS (LTS) (Download & Install)
https://nodejs.org/en/download/
- Mongo DB (v4.4.3) (Download & Install)
https://www.mongodb.com/try/download/community
- Postman (Download & Install)
https://www.postman.com/downloads/
- Angular 10.x.x (Run Command)
npm install -g @angular/cli@latest
- Nodemon (Run Command)
npm install -g nodemon
- Git
git --version
- Node JS
node -v
- Mongo DB
mongo --version
- Angular
ng --version
- Nodemon
nodemon --version
- Clone the repository by running this command where you want the project to be saved.
https://github.com/Revolution-SDC/MEAN-Stack-Workshop-Code.git
- Install Node Modules.
i) In the root directory, run the command:
npm install
ii) Go to the 'angular-src' directory and again run:
npm install
- In the root directory, run the command:
nodemon
- Go to the 'angular-src' directory and run the command:
ng serve
- Open a browser and go to the following URL:
localhost:4200
- To start the backend of the project, open a CMD in the root directory and run the command:
nodemon
- To start the frontend of the application, open a CMD in the "angular-src" directory and run the command:
ng serve