Latest Node.js and Gulp - Surfing-Chef/Bourbon GitHub Wiki

  • Check if Node.js is installed:
>npm -v            
3.10.9           ## installed version of NPM will show if Node.js is installed                                  
  • Check for global updates. Always worth the time to update your workflow before starting a new project:
## NPM ##
>npm update -g npm                 ## node-package-manager
>npm list -g --depth=0             ## simple list of globally installed packages
>npm install -g npm-check          ## installs a package update checker
>npm-check -g                      ## shows npm packages requiring updates
>npm-check -gu                     ## shows npm packages requiring updates with interative options to update

####The following is an excerpt from the Getting Started page at github.com/gulpjs:

If you've previously installed gulp globally, run npm rm --global gulp before following these instructions.

Install the gulp command

npm install --global gulp-cli


> #### Install `gulp` in your devDependencies

> Run this command in your project directory:

> ```sh
npm install --save-dev gulp