Last active
July 19, 2016 09:29
-
-
Save organizm/63916a0bf7b2fe00081785dfc5228391 to your computer and use it in GitHub Desktop.
Gulp instruction #gulp #node
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
# Install latest node | |
# for Node.js v4 | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
# OR for Node.js v5 | |
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - | |
# OR for Node.js v6 | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get install nodejs | |
# it will install npm to | |
# Install npm | |
sudo apt-get install npm | |
# Install gulp global | |
sudo npm install gulp -g | |
# Install global gulp pascages | |
sudo npm install --global gulp-minify-css | |
#create global link to gulp component | |
sudo npm link pump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment