Last active
August 29, 2015 14:07
-
-
Save yashprit/2250dc7710e2094d7245 to your computer and use it in GitHub Desktop.
Node js file structure
This file contains 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
. | |
├── Gemfile | |
├── Rakefile | |
├── app | |
│ ├── controller | |
│ ├── dao | |
│ ├── middleware | |
│ ├── util | |
│ └── views | |
├── app.js | |
├── config | |
├── db | |
├── gulpfile.js | |
├── log | |
├── node_modules | |
├── package.json | |
├── public | |
├── routes.js (we can move this under app or app/middleware) | |
├── server.js | |
├── spec | |
├── task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment