Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 502 Bytes

node.markdown

File metadata and controls

29 lines (21 loc) · 502 Bytes
layout title icon tagline
default
Node.js
nodejs02
Building Node.js Projects

The following Node.js versions are available to your build:

  • Node 0.6
  • Node 0.8
  • Node 0.10

Dependencies

Node.js includes a package management utility called NPM. Executing npm install will download all dependencies defined in the package.json file.

npm -d install

Unit Tests

The NPM utility is also used to execute unit test by executing:

npm test