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

Version 4.21.0 and older now pulls in types for 5.0.0 that are incompatible. ``` "node_modules/@types/express": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz", "integrity": "sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==", "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^5.0.0",...

bug

Regarding the release notes: Thank you for highlighting the important changes in release notes in an "important" section :pray: Would it be possible to organize the other changes, to make...

![Screenshot 2024-09-21 104151](https://github.com/user-attachments/assets/96a8ac0d-321c-43bc-822a-209e782daa6a) here's my app.ts (index.ts contain app.listen part after successful connection with mongo.db); here's test controller. ![Screenshot 2024-09-21 104216](https://github.com/user-attachments/assets/37b5ba40-b008-4b7a-bde7-dcfd2ab70918) when hit API with postman, none of the error...

question

We should inherit https://github.com/expressjs/.github/blob/master/SECURITY.md directly. Related #6427 (cc: @jonchurch, @bjohansebas )

4.x
fast track

We already using for other modules like `node:http`, `node:path` and `node:fs`

Port #6570 cc: @jonchurch @bjohansebas

5.x
fast track

This is my indexWithZod.ts file: ``` import express from 'express'; import { z } from 'zod'; export const appWithZod = express(); appWithZod.use(express.json()); const sumInput = z.object({ a: z.number(), b: z.number()...

question

explicitly import Buffer using `const { Buffer } = require('node:buffer')` for clarity and future compatibility, following Node.js best practices.

Good morning everyone =) Currently, Express is widely used by applications of various sizes and purposes, serving as the foundation for numerous critical web services. However, a common challenge in...

discuss
ideas

Purpose of this PR is to add a new github workflow and script which will run the benchmarks for express. - Automatically at each PR opened & synced - Will...

performance :zap: