CRUD app concept
Temitope Ayodele

Temitope Ayodele @temmietope

About: Frontend and Web Accessibility Engineer passionate about optimizing for web performance, user experience and accessibility.

Location:
Nigeria
Joined:
Jun 2, 2019

CRUD app concept

Publish Date: Sep 26 '19
10 0

Using various methods, any programming language can be used to make a CRUD app. CRUD stands for Create, Read, Update, Delete. For web APIs use HTTP requests are used to correspond to the CRUD verbs.

C for Create
HTTP Method : POST
POST creates a new resource.

R for Read
HTTP Method : GET
GET retrieves a resource.

U for Update
HTTP Method : PUT/PATCH
PUT/PATCH updates an existing resource.

D for Delete
HTTP Method : DELETE
DELETE deletes a resource.

Comments 0 total

    Add comment