https://github.com/ninadingole/sample-expressjs-app
This is the sample app that I use to learn nodejs and expressjs
https://github.com/ninadingole/sample-expressjs-app
Last synced: about 1 month ago
JSON representation
This is the sample app that I use to learn nodejs and expressjs
- Host: GitHub
- URL: https://github.com/ninadingole/sample-expressjs-app
- Owner: ninadingole
- Created: 2016-12-20T03:43:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-19T02:50:24.000Z (over 9 years ago)
- Last Synced: 2025-01-14T02:43:53.627Z (over 1 year ago)
- Language: CSS
- Size: 1.36 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Books Application
This is a sample application I designed to learn **nodejs**, **expressjs** and **mongodb** framework.
Also I have added docker configurations so that you dont need to setup all the things after cloning the project just run
```bash
docker build -t [tagname]
```
and then,
`docker run -name bookapp -p 5000:5000 [tagname]`
To stop the cotainer:
`docker stop bookapp`
**Note**
With few of my recent updates to the code the docker build is not working so you can start the application using
`npm start` or `npm serve` as a gulp task.
I will update the docker file to manage both the application and mongodb instance soon.