--- theme : "night" transition: "slide" highlightTheme: "monokai" logoImg: "logo.png" slideNumber: false title: "JavaScript-Reintroduction" --- ::: block Introduction to Node.js {style=font-size:3em;text-align:center;} ::: --- ### Overview 1. Node.js 2. NPM 3. Package.json 4. npm install 5. npm audit fix 6. NVM --- ### NPM ::: block Node Package Manager {style=font-size:1em;text-align:center;} ::: Why we use it?
  1. Allows users to install 3rd Party Software
  2. Technically, seperate from node.js but bundled with it.
  3. The company, NPM, now owned by Github.
--- ### NVM ::: block Node Version Manager {style=font-size:1em;text-align:center;} :::
  1. Allows use to install and use multiple different versions of node.
  2. Aids in maintaining legacy software.
---