Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yousefmohammad/crud-project
API performing the crud operations
https://github.com/yousefmohammad/crud-project
api crud crud-api crud-app javascript node-js node-js-app nodejs nodejs-app
Last synced: 17 days ago
JSON representation
API performing the crud operations
- Host: GitHub
- URL: https://github.com/yousefmohammad/crud-project
- Owner: YousefMohammad
- Created: 2024-09-06T18:46:55.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T20:12:52.000Z (2 months ago)
- Last Synced: 2024-10-15T02:24:48.720Z (about 1 month ago)
- Topics: api, crud, crud-api, crud-app, javascript, node-js, node-js-app, nodejs, nodejs-app
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ___CRUD_project___
### __This Project was created to use API performing the crud operations, which are__
* #### Create: Inserting a new user
* #### Read: Selecting the information of the user
* #### Update: Updating some or all information of the user
* #### Delete: Deleting a user
#### __It uses URL information as methods, queries, and the path itself to do these operations, such as__
* #### POST: As it applies to input new information; so it is used to create data (create operation)
* #### GET: It applies to requesting information; so it is used to read data from the database (read operation)
* #### PATCH: It modifies the requesting information for the requested query, so it is used to update data from the database (update operation)
* #### DELETE: It applies to delete the requesting information/body, so it is used to delete data from the database (delete operation)