express
express copied to clipboard
Fast, unopinionated, minimalist web framework for node.
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",...
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...
 here's my app.ts (index.ts contain app.listen part after successful connection with mongo.db); here's test controller.  when hit API with postman, none of the error...
We should inherit https://github.com/expressjs/.github/blob/master/SECURITY.md directly. Related #6427 (cc: @jonchurch, @bjohansebas )
We already using for other modules like `node:http`, `node:path` and `node:fs`
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()...
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...
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...