undici icon indicating copy to clipboard operation
undici copied to clipboard

An HTTP/1.1 client, written from scratch for Node.js

Results 379 undici issues
Sort by recently updated
recently updated
newest added

## This would solve... It doesn’t look like there’s anything in the documentation on error handling, except perhaps only statusCode. For comprehensiveness, I would suggest it be considered important to...

Docs

Override the pipelining option accordingly in case user passes a valid connection header. Refs: https://github.com/nodejs/undici/issues/1305

enhancement

### Discussed in https://github.com/nodejs/undici/discussions/1420 Originally posted by **nwtgck** May 6, 2022 Hi, I'd like to request a fixed-length multipart request. The code below requested with `transfer-encoding: chunked` without content-length. I...

enhancement

## Bug Description A request on this [page of the Daily Mail](https://www.dailymail.co.uk/sciencetech/article-8057229/Scientists-create-stunning-gifs-Mars-sand-dunes-understand-conditions-impact-them.html) throws an _UND_ERR_SOCKET_ error. There is no problem with `https`. ## Reproducible By Execute this script: ```JavaScript import...

bug

## This would solve... In a library I am working on, they had 2 events (request & response) that would fire before and after a request was made. The purpose...

enhancement

## Bug Description Hello, I'm trying to create a custom AWS lambda container runtime as a small hobby project. And since fetch is now part of the core NodeJS I...

bug

Hi, I'm using HTTPDataSource that uses undici. I'm trying to make it work through a proxy. I've tried to use: `const proxyAgent = new ProxyAgent({ uri: '0.0.0.0:3128', protocol: 'http', }...

bug

Should we try to reach out the the maintainers of popular http client ecosystem packages about switching node core client to undici under the hood? [Future of the Node HTTP...

Status: help-wanted
question

Is there any interest in adding additional api's for http2/3 support? While I understand this is a new domain for this package to cover, if we want to get folks...

enhancement

It would be helpful to support pre/post-processing of requests/responses. Some of the use-cases that I see are: - authentication - logging - custom container wrapping (e. g. by using Either)...