Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stepinfwd/crud
Created with CodeSandbox
https://github.com/stepinfwd/crud
Last synced: about 1 month ago
JSON representation
Created with CodeSandbox
- Host: GitHub
- URL: https://github.com/stepinfwd/crud
- Owner: stepinfwd
- Created: 2020-05-07T18:20:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T17:21:45.000Z (about 2 years ago)
- Last Synced: 2024-10-14T09:28:47.715Z (3 months ago)
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/stepinfwd/CRUD
- Size: 2.09 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD
Created with CodeSandbox
CRUD is an acronym for Create, Read, Update and Delete. It is a set of operations we get servers to execute (POST, GET, PUT and DELETE requests respectively). This is what each operation does:Create (POST) - Make something
Read (GET)- Get something
Update (PUT) - Change something
Delete (DELETE)- Remove something