express icon indicating copy to clipboard operation
express copied to clipboard

Fast, unopinionated, minimalist web framework for node.

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

Here's a first pass at adding a section about planned Org/Repo access levels. This doesn't spell out what _has changed_ or _will change_ about who has access. You can see...

docs
pr

Move from v3 to v4 as it was using a now deprecated version of Node.js 16. It will remove all warning part of each ci run, providing less noise In...

Update dev dependencies only to use up to date packages edit: - [run 1](https://github.com/expressjs/express/actions/runs/8030883410?pr=5500): failing before 14 because of JavaScript

Hello! I want to write an express rendering engine which uses views retrieved from a database, not the file system. I've checked this repo's issue history and done a lot...

ideas

By example: ``` router.options('/', (req, res, next) => { res .status(200) .setHeader('Access-Control-Allow-Methods', allowFor('/')) // Without this line works fine. .json({ schema: schemafor('/') }); }); ``` Says: > Error [ERR_HTTP_HEADERS_SENT]: Cannot...

bug
help wanted
require-triage

Hi everyone, As part of the [OSSF scorecard initiative](https://github.com/expressjs/security-wg/issues/2) of the security working group, we've been actively working on fixing our CI pipelines and migrating them from Travis to GitHub...

tsc-agenda
top priority

# deprecate accepting `maxAge` and `expires` in CookieOptions passed to `res.clearCookie`. See https://github.com/expressjs/express/pull/4852#issuecomment-2094520956 > ## I don't want to consider this breaking in v4, but ultimately because even an empty...

4.x

`package.json`: ```json { "dependencies": { "express": "^4.19.2" } } ``` `server.js`: ```js const express = require("express"); const app = express(); app.get("/", (req, res) => { throw new Error("foo", { cause:...

enhancement

Add default value to the isAbsolute function in utils for providing a default behavior when no path is specified, enhancing usability and maintainability.