DEV Community

Cover image for C.R.U.D?
tfury-1722
tfury-1722

Posted on

C.R.U.D?

CRUD is more of an acronym rather than a word. It represents the operations that all developers will come across within the duration of their technical career. These operations are implemented on the backend side of things and their results are rendered through the front end or what the user would see.

The C represents create which would be a POST request from your browser/client. This action is taken when you would like to insert some data to your backend. The R represents read which would be a GET request to an endpoint from your browser/client to a server. This typically the action you do day to day on the internet when you type in a website address. The U represents an UPDATE request to your backend. This is done to modify a single entry and this entree's ID should be specified before the request is sent. The D is for the DELETE/DESTROY action. This last action is pretty much self explanatory. Some useless data on you backend with-out purpose or relation get the delete action.
This was a brief explanation of CRUD operations. I do hope this shed some light on the matter for you. Thank you for reading.****

Top comments (2)

Collapse
 
bias profile image
Tobias Nickel

please let me link my post about CRUD verbs here.

Collapse
 
tfury1722 profile image
tfury-1722

Sure..sorry for the late response, so much to do, so little time.