Notes for DC225 Intro to Node.JS project
~$ npm init
Creates the package.json for your new project
console.log("Hello World");
Outputs Hello World to the console
~$ npm install --save request https://www.npmjs.com/package/request
--saveadds the package to thepackage.jsonso you can re/install your application later
Installs the request package so you can require("request") in your application