Skip to content
rbkreisberg edited this page Sep 13, 2012 · 3 revisions
  1. Install the newest version of node (0.8.9 right now)

  2. Clone the repository.

  3. From the root of the directory, install all necessry node modules:

     npm install
    
  4. Build and serve the project:

     npm start
    

This starts Brunch (brunch.io) which will rebuild the project after any change is made to the file. It will watch .less, .hbs (handlebar templates), js, .html, .css, etc.

  1. Open your browser to http://localhost:3333

config.coffee controls the Brunch build job. It is in CoffeeScript (annoying) and is sensitive to indents. No curly brackets. Ugh. Otherwise it is a good set of options. configuration manual

If you're curious about bringing in other nodejs tools to work with the project, you can always install a new tool with npm. Special install parameters are needed to preserve that tool dependency in the package.json.

Clone this wiki locally