Skip to content

Instantly share code, notes, and snippets.

@sh4hids
Last active March 11, 2018 15:24
Show Gist options
  • Save sh4hids/45cedcab262a6c584f16d9e780446aea to your computer and use it in GitHub Desktop.
Save sh4hids/45cedcab262a6c584f16d9e780446aea to your computer and use it in GitHub Desktop.
Feature based project structure for Express Application
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