DEV Community

Temitope Ayodele
Temitope Ayodele

Posted on

4 3

CRUD app concept

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.

Top comments (0)

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

Rather than just generating snippets, our agents understand your entire project context, can make decisions, use tools, and carry out tasks autonomously.

Read full post

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay