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
--save
adds the package to thepackage.json
so you can re/install your application later
Installs the request
package so you can require("request")
in your application