Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 1.19 KB

readme.md

File metadata and controls

53 lines (42 loc) · 1.19 KB

Node.js Express MVC Project Template

This is a sample MVC project built on top of the NodeJS, ExpressJS and Mongoose.

Project Overview

This project includes sample user collection its basic CRUD routes.

Table of Contents

Prerequisites

  • Node.js > 14

Installation

  • update .env.development
  • npm i
  • npm run start
  • Run localhost:5000 in browser to access routes directly.
  • Postman collection is available at Postman

Folder Structure

.
├── config
│   └── Database configuration
├── controllers
│   └── User controller methods
├── models
│   └── User collection
├── views
│   └── // template files
├── routes.js
├── server.js
└── ...