I notice that nodejs projects often include folders like these:

/libs, /vendor, /support, /spec, /tests

What exactly do these mean? What's the different between them, and where should I include referenced code?

link|improve this question

56% accept rate
feedback

1 Answer

up vote 30 down vote accepted

Concerning the folders you mentioned:

  • /libs is usually used for custom classes/functions/modules
  • /vendor or /support contains 3rd party libraries (added as git submodule when using git as source control)
  • /spec contains specifications for BDD tests (i.e. using jspec).
  • /tests contains the unit-tests for an application (using a testing framework, see here)

When building a rather large application, i recommend the following additional folders (especially if you are using some kind of MVC- / ORM-Framework like express or mongoose):

  • /models contains all your ORM models (called Schemas in mongoose)
  • /views contains your view-templates (using any templating language supported in express)
  • /public contains all static content (images, stylesheets, client-side javascript)
    • /assets/images contains image files
    • /assets/pdf contains static pdf files
    • /css contains style sheets (or compiled output by a css engine)
    • /js contains client side javascript
  • /controllers contain all your express routes, seperated by module/area of your application

I got used to orginize my projects this way and i think it works out pretty well.

=> updated to take user comment into consideration

link|improve this answer
1  
where would you put your client-side js,css,images? would you suggest a similar folder structure in the public folder, like: public/assets public/assets/css public/assets/images public/assets/docs public/libs public/support public/tests public/models public/views public/controllers ? – ezmilhouse Aug 23 '11 at 11:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.