connect icon indicating copy to clipboard operation
connect copied to clipboard

Connect is a middleware layer for Node.js

Results 11 connect issues
Sort by recently updated
recently updated
newest added

Is it possible to check this on nodejs 17 as well?

- Replace `var` keywords with `const` - Added missing semicolons - Fix spacings

``` const http = require('http') const connect = require('connect') const app = connect() const server = http.createServer() server.addListener('request', (req, res) => console.log('hello')) server.addListener('request', (req, res) => console.log('world')) app.use('/hello', server) app.use('/hello',...

Needs Tests

Right now, when `next(err)` is called, the pipeline will switch into an "error mode" and start to process the error down the error middleware. If some middleware then calls `next()`...

Idea

Full HTTP/2 support without deprecation messages Ref: https://github.com/pillarjs/finalhandler/pull/53

I came across this repo and didn't understand how it differed from Express. This has some answers - https://stackoverflow.com/questions/5284340/what-is-node-js-connect-express-and-middleware So, maybe could add something like this to the readme -...

Hi there, I am facing an issue on my rn project with rn 0.77. ![Image](https://github.com/user-attachments/assets/0e656d32-0d11-47a1-bb94-519f801abd56) Here's my packages: ``` { "name": "oda", "version": "1.0.2", "private": true, "scripts": { "android": "react-native...