express icon indicating copy to clipboard operation
express copied to clipboard

Fast, unopinionated, minimalist web framework for node.

Results 225 express issues
Sort by recently updated
recently updated
newest added

Is this a valid way of recording the request size: ``` app.use(function logger(req, res, next) { req.body._requestSize = 0; req.on('data', (chunk) => { req.body._requestSize += Buffer.from(chunk).length; }); next(); }); app.use(bodyParser.json())...

discuss

This pr fixes #4851. I have ... - [X] added a new test that covers my changes - [X] run linter

5.x
pr

Hi! Are there any plans to modernize the library? In my fork I created basically a rough 'rewrite' of the library just for fun using modern JS features & the...

question

Hi , Can anyone please help me with this , there is DEBUG flag enabled in my node API set as express* which i guess is printed below errors, But...

question
awaiting more info

There's a need to disable ETag for certain routes, where it is a GET but the data may still change between requests - and it is mandatory to have no...

enhancement

I am very fond of the express router for it provides a great deal of flexibility. But I have somewhat problems keeping track of all the routes, middleware locations and...

future

[Official documentation](https://expressjs.com/en/advanced/best-practice-security.html#:~:text=At%20a%20minimum%2C%20disable%20X%2DPowered%2DBy%20header) recommends that at a minimum we remove the `X-Powered-By` header when running Express in production. Why is it enabled by default? Please disable this header in the default...

question

This is an example how to use Express with SSL enabled.

docs
examples
needs tests
pr

:sparkles: _**This is an old work account. Please reference @brandonchinn178 for all future communication**_ :sparkles: --- Fixes https://github.com/expressjs/express/issues/4453 **Please direct all discussion to the issue page**

enhancement
pr

Edit: added @tspascoal as a co-author on this. @tspascoal and I have created a GitHub Actions workflow that will build express on both Linux and Windows machines. I have not...

pr