Skip to the content.
Home Page
Class 16 Notes
Review, Research, and Discussion
- The Web Request Response Cycle is a term for one computer making requests for information to be sent back to it. We use CRUD and REST all the time in programming when connecting to APIs.
- A server is a program that will be taking requests from a client and sending it to an API. It will then recieve the response from that API and send it back to the client program.
- Deploying an application means that you are hosting it on a site with 3rd party sites that will help run your builds.
Terms
- Server: A server is software that allows you to give information from a database of API to the client that requests it.
- Pub/Sub: This is a way of writing code that allows you to write code asynchronously.
- WRRC: The cycle to send requests and get responses through the web.