https://github.com/0xdefilover/mean-stack-demo
Simple Web Application using MEAN stack
https://github.com/0xdefilover/mean-stack-demo
angular6 express mongodb nodejs
Last synced: about 1 year ago
JSON representation
Simple Web Application using MEAN stack
- Host: GitHub
- URL: https://github.com/0xdefilover/mean-stack-demo
- Owner: 0xdefilover
- License: mit
- Created: 2018-07-25T12:06:03.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-27T01:59:31.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T03:18:37.602Z (about 1 year ago)
- Topics: angular6, express, mongodb, nodejs
- Language: TypeScript
- Homepage:
- Size: 2.14 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Simple MEAN Stack Demo
## Tech/Framework used
* [Angular6](https://angular.io/)
* [NodeJS](https://angular.io/)
* [Express](https://expressjs.com/)
* [MongoDB](https://www.mongodb.com/)
## SERVER
For starting up the server side, navigate into server folder from root folder
```
cd server
```
For starting the server
```
nodemon index.js
```
Once the server is ready navigate back to root folder by using commmand
```
cd ..
```
## FRONT-END
For starting the front-end services, navigate into frontend folder from root folder
```
cd frontend
```
To build to start Angular Project
```
npm start
```
### Start in browser
#### Server
* http://localhost:1234
#### Frontend
* http://localhost:4200
## RUN TESTS
```
npm test
```