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

This is a regression in v5 ``` import { NextFunction, Request, Response } from 'express'; export function someMiddleware(){ return (req: Request, res: Response, next: NextFunction) => { // Property 'body'...

awaiting more info
typescript

## Environment information **Version**: 5.0.1 (latest) **Platform**: Windows 10 (x86_64) **Node.js version**: 22.14.0 **TypeScript version**: 5.5.4 ## What steps will reproduce the bug? ```ts const getData = async (): Promise...

typescript

It has been mentioned several times, both in meetings and other issues, to provide support for diagnostic channels, which seems to be something that wants to be integrated into Express...

help wanted
5.x
6.x

Test for view.prototype.render view.js (133-159 line) Before: ![Screenshot From 2025-01-31 14-36-13](https://github.com/user-attachments/assets/d9b8b5f6-15c0-4f77-9018-0b111637a34c) After: ![Screenshot From 2025-01-31 14-41-06](https://github.com/user-attachments/assets/20800df1-293d-47c3-85f2-d095329c3bfa)

@dougwilson should be added to #2237

5.x
future

This is an idea for removing the `res.send(obj)` signature and it's other similar signatures that will `JSON.stringify` the value and send it as JSON. In my opinion there is no...

discuss
ideas

- Simplified the logic for accepting both array and flattened arguments. - Used Array.from for improved readability and conciseness. Related: https://github.com/expressjs/express/pull/6093

6.x

This PR updates the Search example to address issues caused by breaking changes in Redis v4+. The online example was broken due to Redis updates and its reliance on the...

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

The function name `xhr` was removed as it is clear from the property definition. This change improves readability and follows best practices for concise function expressions.