Skip to main content

Hands On

Project 1

Build a simple http server that can accept values in query params and print them in the response.

Project 2

Make a simple CRUD style application. Features:

  • Maintain a global app level list/map/struct.
  • Perform CRUD operations on this global variable using requests made to the server.
  • Can use either query params or different routes to perform these operations as per choice.
  • Operations to be performed:
    • Add something to the data
    • Remove specific item from the data
    • Update a particular entry in the data
    • Get the list of all data
    • Get a specific entry from the data

References