How to create a Twitter bootstrap

I am trying to create bootstrap from source code. This causes the following error when I try to run the make .

 Running JSHint on javascript... รข Done /bin/sh: 1: recess: not found make: *** [build] Error 127 

This is what I have done so far.

  • Clone git clone git://github.com/twitter/bootstrap.git boot repository git clone git://github.com/twitter/bootstrap.git
  • Install npm apt-get intall npm
  • Install less npm install -g less
  • Install jshint npm install -g jshint
  • Install make apt-get install make

What am I missing here?

+6
source share
1 answer

You miss recess , a wrapper for less clean CSS because of the Twitter coding guide .

Just follow the instructions in the README.md file from Bootstrap sources. See the Developers section (the same information is also in the official Bootstrap site ):

 npm install recess connect uglify-js jshint -g 
+5
source

All Articles