Backend Flashcards
1
Q
CRUD
A
Create (post) - make something
Read (get) - get something
Update (put) - change something
Delete (delete) - remove something
2
Q
how does a server get requests and generate responses?
A
http - hypertext transport protocol.
This allows us to handle CRUD (create/post , read/get , update/put, delete
3
Q
HTTP methods
A
get, post, put, delete - all parts of this protocol.
Express is a framework that helps us handle these requests in a simple way.
4
Q
EJS
A
embedded javascript templates - allows to dynamically create html at runtime.
5
Q
what code listens on a server for web requests?
A
API