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

Right now the default handler (last step) will `console.error` when it gets an `err`, otherwise 404. I think that it probably shouldn't `console.error` when the `err` it got was a...

ideas
5.x
module:finalhandler

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.16 to 3.28.18. Release notes Sourced from github/codeql-action's releases. v3.28.18 CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language...

dependencies
github_actions

Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.4.1 to 2.4.2. Release notes Sourced from ossf/scorecard-action's releases. v2.4.2 What's Changed This update bumps the Scorecard version to the v5.2.1 release. For a complete list of...

dependencies
github_actions

## Environment information **Version**: [v5.1.0](https://github.com/expressjs/express/releases/tag/v5.1.0) **Platform**: Linux 6.8.0-1021-aws 23~22.04.1-Ubuntu SMP Tue Dec 10 16:50:46 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux **Node.js version**: v16.20.2 **Any other relevant information**: N/A ## What...

awaiting more info

Some PRs that could go into the next minor version of Express: - https://github.com/expressjs/express/pull/2653 - https://github.com/expressjs/express/pull/6405

--- **:stop_sign: No Merge before #6404 has landed in v6** --- With this, those arguments are deprecated when they are undefined or different from their data type Related #6404 Closes...

deprecate
5.x

I set up something like this to troubleshoot an issue with "trust proxy": ```js app.set('trust proxy', ip => { console.log({ip}) return true }) ``` I noticed that each time I...

This contribution adds unit tests for the `utils.compileETag()` function in `test/utils.js`. The tests verify behavior for: - `true`, `false`, `"strong"`, `"weak"` input values - Invalid input types (array, object) -...

use for...of loop instead of traditional for loop in response.js for better readability