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

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

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