Instructions

Copying the data from the included .csv dataset:

  • Build a light web server in a seperate folder outside of this repo
  • Return the entire collection as JSON when you GET the index (/) of the server
  • Return an individual item as JSON when you GET the id of that item (eg., /4)
  • Return an error message as JSON when you GET the id of an item that doesn't exist (eg., /100, /forty-five, etc.)
  • Deploy your server to the internet
  • Test your API with a headless browser like Postman

Notes

  • Your server should include appropriate CORS headers

Examples

Your returned data list should look like this:

{
    data: [{
        "id": 1,
        "firstAttribute": "firstValue",
        "secondAttribute": "secondValue"
    },{
        "id": 2,
        "firstAttribute": "firstValue",
        "secondAttribute": "secondValue"
    }]
}

Your returned data item should look like this:

{
    data: {
        "id": 1,
        "firstAttribute": "firstValue",
        "secondAttribute": "secondValue"
    }
}

Your returned error should look like this:

{
    error: {
        "message": "No record found!"
    }
}

Site link: https://serve-drill-2.herokuapp.com/