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
- Host: GitHub
- URL: https://github.com/deepak356575/recipe
- Owner: Deepak356575
- Created: 2024-12-12T09:52:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-14T12:29:53.000Z (over 1 year ago)
- Last Synced: 2025-02-14T19:53:18.791Z (over 1 year ago)
- Topics: javascript, mongodb, postman, render
- Language: JavaScript
- Homepage: https://ozbourne-recipes.onrender.com
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.