Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for socketPath (unix domain sockets) for requests. #126

Open
mctrafik opened this issue Feb 28, 2024 · 0 comments
Open

Support for socketPath (unix domain sockets) for requests. #126

mctrafik opened this issue Feb 28, 2024 · 0 comments

Comments

@mctrafik
Copy link

Hi. I'd like to fetch something from a socket instead of a TCP/IP host:port.

So if I start the server like:

import { createServer } from 'node:http2';
const server = createServer();
// ...define services.
server.listen('/tmp/test.sock');

I'd like to be able to fetch from it.

The native node fetch allows this through a custom agent, i.e.:

fetch('http://anything/my/path', { dispatcher: new Agent({ socketPath: '/tmp/test.sock'})});

but there's not an equivalent in fetch-h2.

Can this be added?

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant