Backend Flashcards

1
Q

CRUD

A

Create (post) - make something
Read (get) - get something
Update (put) - change something
Delete (delete) - remove something

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

EJS

A

embedded javascript templates - allows to dynamically create html at runtime.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what code listens on a server for web requests?

A

API

How well did you know this?
1
Not at all
2
3
4
5
Perfectly