Last active
August 29, 2015 14:03
-
-
Save pedrofelipe/4093db012e8d99e76fcf to your computer and use it in GitHub Desktop.
Getting started a new front-end project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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