An open API service indexing awesome lists of open source software.

https://github.com/deepak356575/recipe

Backend data of Recipe app
https://github.com/deepak356575/recipe

javascript mongodb postman render

Last synced: about 2 months ago
JSON representation

Backend data of Recipe app

Awesome Lists containing this project

README

          

/*Recipes App*/

//Overview

The Recipes App is a fully functional CRUD application designed for managing recipes.

//Features

The application provides the following functionalities:

Create Recipe: Add a new recipe to the database. --- /api/recipes - Create a new recipe

Get All Recipes: Retrieve a list of all recipes. --- / - Get all recipes

Get Recipe by ID: Fetch details of a specific recipe using its unique ID. --- /api/recipes/:id - Get a specific recipe by ID

Update Recipe: Modify details of an existing recipe by ID. --- /api/recipes/:id - Update a recipe by ID

Delete Recipe: Remove a recipe from the database by ID. --- /api/recipes/:id - Delete a recipe by ID

Postman documentation link --- https://documenter.getpostman.com/view/39963289/2sAYHxo4Dt

//Tech Stack

Node.js: Server-side runtime environment.

Express.js: Web framework for building APIs.

Mongoose: ODM library for MongoDB.

MongoDB: Database for storing recipes.

Postman: Tool for API testing and documentation.