Last active
March 11, 2018 15:24
-
-
Save sh4hids/45cedcab262a6c584f16d9e780446aea to your computer and use it in GitHub Desktop.
Feature based project structure for Express Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xpress-app | |
|-- π bin | |
| |-- www | |
|-- π config | |
| |-- config.js | |
| |-- db.js | |
| |-- api.version.js | |
|-- π helpers | |
| |-- π auth | |
| |-- π chat | |
|-- π public | |
| |-- π js | |
| |-- π css | |
| |-- π img | |
| |-- π fonts | |
|-- π components | |
| |-- π user | |
| | |-- index.js | |
| | |-- user.model.js | |
| | |-- user.controller.js | |
| | |-- user.routes.js | |
| | |-- user.view.ejs | |
| |-- π product | |
| | |-- index.js | |
| | |-- product.model.js | |
| | |-- product.controller.js | |
| | |-- product.routes.js | |
| | |-- product.view.ejs | |
|-- app.js | |
|-- package.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment