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.
(click to expand or hide)
.
├── 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