express icon indicating copy to clipboard operation
express copied to clipboard

Fast, unopinionated, minimalist web framework for node.

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

- Changed the return type annotation to include `undefined`, reflecting the actual return value. - Updated the implementation to use modern JavaScript methods for better readability and performance. - Clarified...

This PR updates the Search example to address issues caused by breaking changes in Redis v4+ and Express 5. Key changes include: - Replacing `sadd` with `sAdd` and `smembers` with...

- Streamlined the implementation of the app.param function by replacing the for loop with forEach, improving readability. - Maintained JSDoc comments to ensure clarity on the function's purpose and parameters....

- Replaced traditional function expressions with arrow functions for improved readability. - Utilized the spread operator to handle arguments more concisely and removed unnecessary variable declarations. - The logic for...

cherry-pick #6066 into 4.x https://github.com/expressjs/express/pull/6066#issuecomment-2425069285 > @UlisesGascon: Should we also backport it to v4? Not worth a release on its own, but when it's as easy a cherry-pick and no...

4.x
backport

Refactor acceptsCharsets to support flexible charset input formats This change improves the acceptsCharsets method to handle multiple input formats: - Single charset string (e.g., "utf-8") - Multiple charset arguments (e.g.,...

future

Related: https://github.com/expressjs/express/pull/6103#issuecomment-2450410608

Add remarks for wildcard parameters of Express 5.x

examples

### Enhance `req.acceptsEncodings` Method This enhancement refines the `req.acceptsEncodings` method to improve the handling of the request's `Accept-Encoding` header. The updated method checks whether the client accepts the specified encoding(s)...