Skip to content

Instantly share code, notes, and snippets.

@organizm
Last active July 19, 2016 09:29
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 organizm/63916a0bf7b2fe00081785dfc5228391 to your computer and use it in GitHub Desktop.
Save organizm/63916a0bf7b2fe00081785dfc5228391 to your computer and use it in GitHub Desktop.
Gulp instruction #gulp #node
# 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