Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 642 Bytes

NOTES.md

File metadata and controls

19 lines (12 loc) · 642 Bytes

Notes

Notes for DC225 Intro to Node.JS project

Create Node Package

~$ npm init

Creates the package.json for your new project

Hello World

console.log("Hello World");

Outputs Hello World to the console

Install Node Package "dependencies"

~$ npm install --save request https://www.npmjs.com/package/request

  • --save adds the package to the package.json so you can re/install your application later

Installs the request package so you can require("request") in your application