https://github.com/gobeam/node_app_demo_iims
Node app demo project
https://github.com/gobeam/node_app_demo_iims
Last synced: 9 months ago
JSON representation
Node app demo project
- Host: GitHub
- URL: https://github.com/gobeam/node_app_demo_iims
- Owner: gobeam
- Created: 2020-11-04T01:59:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-10T06:20:29.000Z (about 5 years ago)
- Last Synced: 2025-04-12T12:12:13.988Z (9 months ago)
- Language: JavaScript
- Size: 84 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Introduction
This is Node.js workshop project done to teach IIMS BSC.IT students to learn how to make simple cms with Node.js using Express.js, MongoDB, Passport.js and EJS as templating engine. It includes features like login, register & CRUD.
## Setup
Clone the repo:
```bash
git clone https://github.com/gobeam/node_app_demo_iims.git
cd node_app_demo_iims
cp .env.example .env #Add required config
npm install
npm run start
```
This project needs nodemon as development dependency, if it is not install install it with
```bash
npm install -g nodemon
```