Skip to content
Dan edited this page Mar 18, 2015 · 17 revisions

Installing the required software

Note: the majority of these instructions are for use on a Mac. Windows instructions are included where appropriate.

Homebrew (Mac - optional)

You can install Homebrew to manage packages via the command line with:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install NodeJS either via Homebrew with the following command:

brew install node

or using the installer (on Windows). Note: this also installs npm.

If you don’t have Bower installed globally on your machine, install it via npm:

sudo npm install -g bower

Note: For Windows machines, drop the sudo, but you may have to run Powershell as Administrator to install the module globally.

If you don’t have Grunt and the Grunt command line tools installed globally on your machine, install it via npm:

sudo npm install -g grunt grunt-cli

The lazy three-liner... (sorry, Mac only)

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install node
sudo npm i bower grunt grunt-cli -g
Clone this wiki locally