Skip to main content

CRUD ↔ 4 fundamental App needs to operate on persistent storage

aka CRUD, Create-Read-Update-Destroy

Create

(ability for Client) to create dataPOST HTTP Request

Read

(ability for Client_) _to read dataGET HTTP Request

Update

(ability for Client) to edit/update dataPUT || PATCH HTTP Request

Destroy

(ability for Client) to delete/destroy dataDELETE HTTP Request

CRUD Cycle

Base operations of persistent database

References

  1. firebase/firestore/lite ↔ lite ver of firebase/firestore for CRUD ops only w/o real-time listeners, offline support, latency compensation

  2. MongoDB CLI ↔ can CRUD on DB via CLI to create/query/update/delete docs from terminal - but maybe simpler to just use compass instead?!

  3. MongoDB CompassMongo GUI to CRUD/validate/index/etc

  4. [**_CRUD_**](crud) ops of [HTTP Request](http-request)POST GET PUT PATCH DELETE