https://github.com/chetan6780/chetan-revolution-mean-stack
Notes Application for completion of MEAN stack workshop conducted by Revolution SDC
https://github.com/chetan6780/chetan-revolution-mean-stack
angular express mean mean-stack mongodb nodejs
Last synced: about 2 months ago
JSON representation
Notes Application for completion of MEAN stack workshop conducted by Revolution SDC
- Host: GitHub
- URL: https://github.com/chetan6780/chetan-revolution-mean-stack
- Owner: chetan6780
- Created: 2021-05-01T16:24:54.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-02T16:21:43.000Z (over 3 years ago)
- Last Synced: 2025-01-11T13:29:17.814Z (3 months ago)
- Topics: angular, express, mean, mean-stack, mongodb, nodejs
- Language: TypeScript
- Homepage:
- Size: 2.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chetan-Revolution-MEAN-Stack
## Requirements
1. Git Version Control (Download & Install)
`https://git-scm.com/downloads`
2. Node JS (LTS) (Download & Install)
`https://nodejs.org/en/download/`
3. Mongo DB (v4.4.3) (Download & Install)
`https://www.mongodb.com/try/download/community`
4. Postman (Download & Install)
`https://www.postman.com/downloads/`
5. Angular 10.x.x (Run Command)
`npm install -g @angular/cli@latest`
6. Nodemon (Run Command)
`npm install -g nodemon`## Verify Installation of all CLI Tools
1. Git
`git --version`
2. Node JS
`node -v`
3. Mongo DB
`mongo --version`
4. Angular
`ng --version`
5. Nodemon
`nodemon --version`## How to Install & Run the App
1. Clone the repository by running this command where you want the project to be saved.
`https://github.com/chetan6780/Chetan-Revolution-MEAN-Stack.git`
2. 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`
3. In the **root directory**, run the command:
`nodemon`
4. Go to the **'angular-src'** directory and run the command:
`ng serve`
5. Open a browser and go to the following URL:
`localhost:4200`## You always have to run the following commands in order to start the application.
1. To start the backend of the project, open a CMD in the root directory and run the command:
```
nodemon
```
2. To start the frontend of the application, open a CMD in the "angular-src" directory and run the command:
```
ng serve
```

## You can watch [MEAN stack workshop Playlist](https://www.youtube.com/playlist?list=PLlZwC3ux9MSPXt7F2FyPLLhIb5JKnrEec) by Revolution-SDC.
## Happy Coding!