Table of Contents

HTTP - Handler (Request Handler) (MiddelWare)

About

In a HTTP server, a handler (or request handler) is a method that process a request and

The handler usually manipulates a context object that wraps the request with contextual information such as time of arrival, session, etc…

An handler is also known as middelware (for instance Node express server)