Overriding the Express API
The Express API consists of various methods and properties on the request and response objects. These are inherited by prototype. There are two extension points for the Express API:
- The global protoypes at
express.request
andexpress.response
. - App-specific prototypes at
app.request
andapp.response
.
Altering the global prototypes will affect all loaded Express apps in the same process. If desired, alterations can be made app-specific by only altering the app-specific prototypes after creating a new app.
Methods
You can override the signature and behavior of existing methods with your own, by assigning a custom function.
Following is an example of overriding the behavior of res.sendStatus.
app.response.sendStatus = function (statusCode, type, message) { // code is intentionally kept simple for demonstration purpose return this.contentType(type) .status(statusCode) .send(message) }
The above implementation completely changes the original signature of res.sendStatus
. It now accepts a status code, encoding type, and the message to be sent to the client.
The overridden method may now be used this way:
res.sendStatus(404, 'application/json', '{"error":"resource not found"}')
Properties
Properties in the Express API are either:
- Assigned properties (ex:
req.baseUrl
,req.originalUrl
) - Defined as getters (ex:
req.secure
,req.ip
)
Since properties under category 1 are dynamically assigned on the request
and response
objects in the context of the current request-response cycle, their behavior cannot be overriden.
Properties under category 2 can be overwritten using the Express API extensions API.
The following code rewrites how the value of req.ip
is to be derived. Now, it simply returns the value of the Client-IP
request header.
Object.defineProperty(app.request, 'ip', { configurable: true, enumerable: true, get: function () { return this.get('Client-IP') } })
© 2017 StrongLoop, IBM, and other expressjs.com contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v3.0.
http://expressjs.com/en/guide/overriding-express-api.html