Repository for our project
Proposal link: https://docs.google.com/document/d/15_-NZ3UNrw-VlSam3qPHlpVQfqOBymX8g8aye1f0J-o/edit
User Stories link: https://docs.google.com/document/d/1LFgYdtTtZvgwRRoOW8V5Y5ukoOj1bnP04ete-gGiLGo/edit
npm is a package manager for node.js. It's probably important.
npm install
Creates a server.js file. Not sure if you need to do this.
npm -y
Express is a package that you install with npm. It's a "popular, lightweight, and flexible Node.js web application framework that provides a robust set of features for building web applications and APIs. It is designed to be minimalistic, allowing developers to easily create robust and scalable applications." (google.com AI answer)
npm install express
and now you have the template website! You can now type in the terminal
node server.js
and it should run the template!
Will add more to this with better explanations hopefully.