.
├── bin
│ ├── www
│ └── deploy.sh
├── config
│ ├── env
│ ├── index.js
│ └── passport.js
├── controllers
│ ├── index.js
│ └── users.js
├── data
│ ├── migrations
│ ├── seeds
│ └── validations
├── helpers
│ └── pagination.js
├── middlewares
│ ├── authentication.js
│ └── authorization.js
├── models
│ └── user.js
├── public
│ ├── images
│ ├── js
│ └── css
├── routes
│ ├── api
│ │ ├── v1
│ │ └── v2
│ ├── index.js
│ └── users.js
├── tests
└── views
│ └── layout.hbs
├── app.js
├── package.json
Created
December 22, 2017 10:17
-
-
Save sohelamin/ac55aa6c34fd9aa934f1914c1c4a2d91 to your computer and use it in GitHub Desktop.
Node.js Application Structure
What does contains build.sh?
bin
dir
Fine things.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool yeah!