Express-Recipes-Pagination

# Express: Recipes Pagination

The request to the route /recipes returns all the paginated recipes with default values of page and limit. The query parameters that can be used to set the pagination criteria are:

Routes

Examples

[{
        "id" : 1,
        "name": "Crock Pot Roast"
    },
    {
        "id" : 2,
        "name": "Roasted Asparagus"
    },
    {
        "id" : 3,
        "name": "Curried Lentils and Rice"
    }
]

Project Specifications

Read-Only Paths

Commands