Skip to content

Latest commit

 

History

History
61 lines (53 loc) · 1.81 KB

File metadata and controls

61 lines (53 loc) · 1.81 KB

local-library

You don't want to write on Express JS MVC Architecture boilerplate over and over again right? just fork this repo or even download it. Feel Free ExpressJS with MVC Architecture, Mongoose, and User Auth. templating engine: Pug.

Table of Contents

(click to expand or hide)
  1. Project MVCS (Model, View, Controller, and Schema) Architecture
  2. Database Class Diagram Relationship between Collections in MongoDB
  3. Tree of Codes

Project MVCS (Model, View, Controller, and Schema) Architecture

image

Database Class Diagram Relationship between Collections in MongoDB

image

Tree of Codes

.
├── README.md
├── app.js
├── bin
│   └── www
├── controllers
│   ├── authorController.js
│   ├── bookController.js
│   ├── bookinstanceController.js
│   └── genreController.js
├── models
│   ├── author.js
│   ├── book.js
│   ├── bookinstance.js
│   └── genre.js
├── package-lock.json
├── package.json
├── populatedb.js
├── public
│   └── stylesheets
│       └── style.css
├── routes
│   ├── catalog.js
│   ├── index.js
│   ├── users.js
│   └── wiki.js
└── views
    ├── error.pug
    ├── index.pug
    └── layout.pug

7 directories, 22 files