Skip to content

Instantly share code, notes, and snippets.

@pedrofelipe
Last active August 29, 2015 14:03
Show Gist options
  • Save pedrofelipe/4093db012e8d99e76fcf to your computer and use it in GitHub Desktop.
Save pedrofelipe/4093db012e8d99e76fcf to your computer and use it in GitHub Desktop.
Getting started a new front-end project
// update npm packages
sudo npm update -g npm
// install web app generator (bootstrap + sass)
sudo npm install -g generator-webapp
// create project folder
mkdir project && cd $_
// run web app generator
sudo yo webapp
// run again with sudo
sudo bower install & sudo npm install
// run live reload
grunt serve
// installing bower package and update bower.json
bower install --save [package]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment