Skip to content

Instantly share code, notes, and snippets.

@LeanSeverino1022
Last active July 6, 2020 04:16
Show Gist options
  • Save LeanSeverino1022/21a630f00b4045e1f159a72130e50700 to your computer and use it in GitHub Desktop.
Save LeanSeverino1022/21a630f00b4045e1f159a72130e50700 to your computer and use it in GitHub Desktop.
HTTP #concepts
  • Hyper Text Transfer Protocol - responsible for the communication between web server and the client. You are using HTTP when you open a new page, submit a form, ajax calls, etc.

HTTP is stateless

  • Every request is completely independent
  • Similar to transactions
  • Programming, Local Storage, Cookies, Sessions are used to create enhanced user exp.

What is HTTPS?

  • Hyper Text Transfer Protocol Secure
  • Data sent is encrypted
  • SSL/TLS
  • Install certificate on web host

HTTP Methods

  • Get - retrieves data from the server
  • POST - Submit data to the server
  • PUT - Update data already on the server
  • DELETE - Deletes data from the server

A network protocol is an established set of rules that determine how data is transmitted between different devices in the same network.

TODO: finish this - https://www.youtube.com/watch?v=iYM2zFP3Zn0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment