Skip to content

Latest commit

 

History

History
60 lines (35 loc) · 1.81 KB

README.md

File metadata and controls

60 lines (35 loc) · 1.81 KB

Node.js

Install Node.js with Homebrew:

$ brew update
$ brew install node

Node modules are installed locally in the node_modules folder of each project by default, but there are at least two that are worth installing globally. Those are CoffeeScript and Grunt:

$ npm install -g coffee-script
$ npm install -g grunt-cli

Install Node.js with nvm (Node Version Manager):

Install nvm

$ wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash

Install nodejs

$ nvm  # check the nvm use message
$ nvm install stable  # install most recent nodejs stable version
$ nvm ls  # list installed node version
$ nvm use stable  # use stable as current version
$ nvm ls-remote  # list all the node versions you can install
$ nvm alias default stable  # set the installed stable version as the default node 

Node modules are installed locally in the node_modules folder of each project by default, but there are at least two that are worth installing globally. Those are CoffeeScript and Grunt:

$ npm install -g coffee-script
$ npm install -g grunt-cli

Npm usage

To install a package:

$ npm install <package> # Install locally
$ npm install -g <package> # Install globally

To install a package and save it in your project's package.json file:

$ npm install <package> --save

To see what's installed:

$ npm list # Local
$ npm list -g # Global

To find outdated packages (locally or globally):

$ npm outdated [-g]

To upgrade all or a particular package:

$ npm update [<package>]

To uninstall a package:

$ npm uninstall <package>