* [Install nodeJs here](https://nodejs.org/en/)
* Confirm: `node -v`
* NPM is also installed: `npm -v`
* In the main root of the project: `npm init` and follow through the instructions
* Will generate a `package.json` file in the root of your project
---
* Installing webpack as a developer dependency: ` npm install webpack --save-dev`
* Install jquery: ` npm install jquery --save`
* Installing one of these will create a `node_modules` folder that contains other libraries needed
for you dependency, if you delete this folder, just run `npm install`
* To uninstall a package: `npm uninstall jquery --save`
* **NOTE**: Installing these packages as is, is installing them **locally** per project
* To install packages globally: `sudo npm install live-server --global`