Project done as a part of Technigo bootcamp.
First backend project which was to create an API using Express. This API has a few RESTful endpoints which return either an array of data, or a single item.
Learning Objectives:
- How to build an API in Node using Express
- How to create routes in Express
- Practice data manipulation in JavaScript - selecting, filtering, and limiting arrays
🔵 Blue Level
- The API should be deployed to Heroku or similar hosting service.
- It should have at least 2 routes.
- A minimum of one endpoint to return a collection of results (array of elements)
- A minimum of one endpoint to return a single result (single element).
- Your API should be RESTful
🔴 Red Level (Intermediary Goals)
- Accept filters via query parameters to filter the data you return from endpoints which return an array of data.