Enatega

Endpoints

#

Routing is the process of choosing how an application will react to a client request for a certain endpoint, which is a URI (or path) and a particular HTTP request type (GET, POST, etc.).

When a route is matched, one or more handler functions for that route are called.

Route definition takes the following structure:

app.METHOD(PATH, HANDLER)

Where:

Our server has only five routes

Note #

Powered by BetterDocs

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top