express icon indicating copy to clipboard operation
express copied to clipboard

Fast, unopinionated, minimalist web framework for node.

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

This is based on what was discussed at the last TC meeting for a good "first step" in abstracting out parts of core than can be shared. The changes here...

enhancement
5.x
pr

This is VERY MUCH A WIP, but the idea is that we move the code as is out of the repo. I did it by publishing temp packages under my...

5.x
pr

``` // /regex/hello -> matches app.get(/\/regex\/(.+)/, (req, res) => res.json({ params: req.params })); //named groups not suppoted? // /regex/hello -> error app.get(/\/regex2\/(?.+)/, (req, res) => res.json({ params: req.params }) );...

ideas
module:router

I set the custom function according to the http://expressjs.com/en/api.html#etag.options.table ``` app.set('etag', function (body, encoding) { return generateHash(body, encoding) // consider the function is defined }) ``` Despite on that it's...

awaiting more info

This is a discussion regarding having Express 5.0 drop support for Node.js 0.10. One of the reasons for the delay in Express 5.0 was the announcement of the official merging...

5.x

More info can be found here. Kindly have a look: https://github.com/expressjs/express/pull/3981

ideas

Now that the TS compiler supports module [resolution](https://github.com/Microsoft/TypeScript/issues/2338) via node, it would be nice not to use TSD to install the typing but instead have them included with the npm...

enhancement
4.x

Looking at this, https://github.com/expressjs/express/blob/master/lib/request.js#L79 It seems like express checks `referrer` (with two "r"s) first, then `referer` next. Is there a particular reason why the double-r is checked first? It seems...

`Router` instance mounted explicitly at `'//'` exposes routes when path begins only with a single `/`: ```javascript const TestRoutes = express.Router(); TestRoutes.get('/drop/table/:table', (req, res) => { // drop table res.send(`Dropped...

question
module:router
awaiting more info

I don't meam an "integrated WebSocket server" but the possibility of performing express routing for WebSocket handshake requests. Node `httpServer` emits an "upgrade" event for HTTP GET requests including a...

ideas
help wanted