Skip to content

Instantly share code, notes, and snippets.

@elidupuis
Last active December 25, 2015 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elidupuis/7045445 to your computer and use it in GitHub Desktop.
Save elidupuis/7045445 to your computer and use it in GitHub Desktop.
Steps to get up and running with Grunt.js, from scratch.
# install nvm
# see https://github.com/creationix/nvm
# be sure to restart your terminal after this step
curl https://raw.github.com/creationix/nvm/master/install.sh | sh
# install Node
# use nvm. if you cannot, download binary from Node website http://nodejs.org/download/
nvm help
nvm ls-remote
# install a recent version
nvm install 0.10
# install Grunt CLI
# http://gruntjs.com/getting-started
npm install -g grunt-cli bower
# working with existing Grunt project
cd path/to/project
npm install && bower install
# be sure to read to docs for the project and check out the Gruntfile.
grunt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment