Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // File Names
  2. // lowercase separated by dashes
  3. // not underscores because Node uses dashes for require()
  4. // so using dashes for file names keeps with that standard
  5. // lowercase because not all OS have case sensitive file names
  6.  
  7. // RIGHT
  8. application.js
  9. some-cool-controller.js
  10.  
  11. // WRONG
  12. Application.js
  13. someCoolController.js
  14. some_cool_controller.js
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement