A cartoon caveman

Pick an HTTP Handler based on Route

(code for this section)

HTTP requests have a structure like the following (taken from MDN.)

They have a "method" (POST, GET, PUT, ETC), some headers (key value pairs of info), a body (where the juice is), and a route.

In the image the route is /create-page. It's very common to want to have your server do different things when you get requests on different routes.

→ Log Information.

← Create a development-only user Namespace.