Created
September 20, 2015 23:25
-
-
Save webarthur/6a8d96849d2e83d5bfde to your computer and use it in GitHub Desktop.
Installing NodeJS + Gulp to work with Apache/PHP env
This file contains 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 NodeJS + npm | |
sudo apt-get install nodejs | |
# symbolic link for node | |
sudo ln -s /usr/bin/nodejs /usr/bin/node | |
# install gulp | |
sudo npm install --global gulp gulp-utils | |
# install nice plugins | |
sudo npm install --save-dev gulp-sass gulp-coffee # etc... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment