Skip to content

Instantly share code, notes, and snippets.

@weaponsforge
Last active September 1, 2022 08:22
Show Gist options
  • Save weaponsforge/480f82a0d303f19940718942ba6d4bb8 to your computer and use it in GitHub Desktop.
Save weaponsforge/480f82a0d303f19940718942ba6d4bb8 to your computer and use it in GitHub Desktop.
CRUD Notes

CRUD

Operations Functions HTTP Protocol
Create Insert POST
Read select GET
Update Update PUT
Delete Delete DELETE

CRUD Operations

A CRUD app is a specific type of software application that consists of four basic operations; Create, Read, Update, Delete.

At a high level, CRUD apps consist of three parts; the database, user interface, and APIs.

References

[1] - crud app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment