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

Prerequisites

Installing the required software

Homebrew (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 using the installer or via Homebrew with the following command:

brew install node

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

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

Note: you need sudo permissions for these global installations.


The lazy three-liner...

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