Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 12th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.  - node_modules // auto generated
  2.  - lib
  3.         // generic library code that can't be done with npm
  4.  - src
  5.         - models
  6.                 // database code
  7.         - routes
  8.                 // express routing
  9.         - IO
  10.                 // socket.io files
  11.         - public
  12.                 - js
  13.                         // client-side js
  14.                         - lib
  15.                                 // libraries
  16.                         - modules
  17.                                 // modules
  18.                         - bootstrap.js // bootstrap
  19.                 - less
  20.                         // css files (less)
  21.                 - templates
  22.                         - server
  23.                                 // server-side teampltes
  24.                         - client
  25.                                 // client-side templates
  26.         - server.js // init server
  27.         - configure.js // express configuration
  28.         - bootstrap.js // Load routes, init models & setup socketIO
  29.  - test
  30.         // testing files.
  31.  - package.json
  32.  - .gitignore
  33.  - makeFile? // make?
  34.  - serverStart? // generic file that runs our server?