Reading-Notes

More CRUD

This topic is important to me because I want to create vast applications while using the HTTP methods.

Retrospective 13

References

CRUD Basics.

Speed Coding:CRUD App.

CRUD Basics

CRUD is an acronym that stands for Create, Read, Update, and Delete.

It represents the four basic functions that models should be able to do.

Used to implement a persistent storage application.

Used to interact with database applications.

Create will create, using POST, sends data.

READ will grab it, GET, allows to view the data stored.

UPDATE will update our data, with PUT, we can replace all current data at that target source.

DELETE will delete data, using DELETE, it will remove the targeted data using ID.

CRUD Basics Questions

  1. Which HTTP method would you use to update a record through an API?
  2. Which REST methods require an ID parameter?

CRUD Basics Answers

  1. PUT
  2. DELETE

Speed Coding: Building a CRUD API

The Video.

Speed Coding: Building a CRUD API Questions

  1. What’s the relationship between REST and CRUD?
  2. If you had to describe the process of creating a RESTful API in 5 steps, what would they be?

Speed Coding: Building a CRUD API Answers

  1. They share the same operations between the CRUD operations.
  2. Make an endpoint, Use CRUD operations on said endpoint, Feed data to that endpoint, Get data from the frontend.

Things i want to know more about

I want to know more about making applications using CRUD.

I want to know how complex some operations can get, and know where to get help for said operations.