An open API service indexing awesome lists of open source software.

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

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
```