CRUD
↔ 4 fundamental App needs to operate on persistent storage
aka CRUD, Create-Read-Update-Destroy
Create
(ability for Client) to create data ⇒ POST
HTTP Request
Read
(ability for Client_) _to read data ⇒ GET
HTTP Request
Update
(ability for Client) to edit/update data ⇒ PUT
|| PATCH
HTTP Request
Destroy
(ability for Client) to delete/destroy data ⇒ DELETE
HTTP Request
CRUD Cycle
Base operations of persistent database
References
firebase/firestore/lite
↔ lite ver offirebase/firestore
for CRUD ops only w/o real-time listeners, offline support, latency compensationMongoDB CLI
↔ can CRUD on DB via CLI to create/query/update/delete docs from terminal - but maybe simpler to just use compass instead?!MongoDB Compass
↔ Mongo GUI to CRUD/validate/index/etc[**_
CRUD_**](crud) ops of [
HTTP Request](http-request)
↔POST
GET
PUT
PATCH
DELETE