Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)