week 11 - express routes

PHOTO EMBED

Fri Dec 04 2020 01:42:13 GMT+0000 (Coordinated Universal Time)

Saved by @jlang #nodejs #jquery

Basic routing
Routing refers to determining how an application responds to a client request to a particular endpoint, which is a URI (or path) and a specific HTTP request method (GET, POST, and so on).

Each route can have one or more handler functions, which are executed when the route is matched.

Route definition takes the following structure:

app.METHOD(PATH, HANDLER)
 Save
Where:

app is an instance of express.
METHOD is an HTTP request method, in lowercase.
PATH is a path on the server.
HANDLER is the function executed when the route is matched.
content_copyCOPY