Skip to content

Instantly share code, notes, and snippets.

View Know-Thyself's full-sized avatar

biruk_k Know-Thyself

  • United Kingdom
  • 01:36 (UTC -12:00)
View GitHub Profile

Exercise 1

  1. Extract the contents of the zip file into a new directory and open the folder in VSCode.
  2. Initialise a new Node app in the directory. The entry point should be the existing server.js.
  3. Install Express.
  4. Create an Express app in server.js that listens on port 3000.
  5. Create a new request in Postman to make sure that the server is working.

Exercise 2