- Find all the errors in the code and fix them so the app runs
- There are multiple errors (~15 of them). The app won't run intil they're all fixed.
- As you make it through one error, be on the lookout for the next one.
- ALL files are in play (except
package-lock.json
).
- First, run
npm i
to install all the dependencies - Then run
npm run dev
to start the app. - Start fixing!
- LOOK AT SPELLING ERRORS AND/OR TYPOS!
- Variable names are CASE SENSITIVE!
- SERIOUSLY almost every file is in play!
- In these files I used the shorter
req
andres
in place ofrequest
andresponse
. They're the same objects, just using shorter variable names. - Don't forget the HTML files!! Make sure things like links work!