More slides and information will be online in Canvas.
To get Node ready, run:
> npm install -y
> npm install express
Remember to set the following to
"main" : "app.js"
"type" : "module"
in package.js!
Run your server using > node app.js.
You will constantly have to close and open your server to modify your website, except if you have nodemon.
In your terminal execute the following:
> npm install nodemon --save-dev
> npx nodemon app.js
Ctrl + C to shut down nodemon