CHAPTER 7

image

Express.js Request Object

The Express.js request object (req for short) is a wrapper for a core Node.js http.request object, which is the Node.js representation of the incoming HTTP(S) request. In web, the request has these parts:

The Express.js request object has some additional neat functionality, but essentially it supports everything that the native http.request object can do.

For example, Express.js automatically adds support for query parsing, which is ...

Get Pro Express.js now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.