-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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 Early Hints (103) ? #2683
Comments
You could write directly to |
@mcollina thanks I was not aware of that! |
like so? fastify.get("/", async (request, reply) => {
const links = [
"Link: </style.css>; rel=preload; as=style",
"Link: </script.js>; rel=preload; as=script",
];
const rawHttpRequest = `HTTP/1.1 103 Early Hints\r\n${links.join(
"\r\n"
)}\r\n\r\n`;
reply.raw.socket.write(rawHttpRequest);
return { hello: "world" };
}); returns
|
That'd be the idea, yes |
it's an interesting feature and we can make a plugin for that. I'll make a draft repo for it. |
Here is the draft repo i've written: https://github.com/zekth/fastify-early-hints |
I love so much the Fastify plugin system ❤️ |
Amazing work @zekth! Is it on npm yet? PR to the ecosystem page? |
I think 103 status is not supported yet by the node core (cause it is still in draft IMHO). So spawn+curl seems the only way to check it right now. NB: with http2 the plugin trigger an error, should be a warning be emitted that tell the user to switch to |
@mcollina currently i'm facing some issues with the write operation to the response or to the socket. For example we don't wait the end of the write operation to close the response with fastify, leading to errors. I'm fixing this. Once everything is fixed with the first draft and tests are implemented a first release on npm is thinkable yes. @Eomm will have to dig on http2 yes. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Just a heads-up, this is now supported as an experimental feature in Chromium 95: https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/early-hints.md |
FYI: On 2022-06-21, Chrome 103 became stable, which supports |
Support for early hints landed in Node.js core: nodejs/node#44180. Something that would be interesting is to build a plugin that automatically inspect responses and automatically collect metadata and send them through on next call. Take a look at https://github.com/google/node-h2-auto-push for inspiration. |
There is this plugin https://github.com/zekth/fastify-early-hints from @zekth we could start from. The first step, migrating to fastify v4? |
@Eomm I'm +1. I can transfer ownership |
Go for it, then we will update it 👍🏽 |
Done |
@zekth can you add me to npm so I can add it to the org? |
Can we close this one? |
@mcollina |
why? |
I dont know. Maybe because @climba03003 suggested to implement node native api call when it is released. It is released with node 18.11.0. |
It can be released, but it can improve to use the native one when possible. |
I choose to release in a major to imply it is migrated to organization and a stable release. |
This is more of a question than a request to implement a feature.
How possible is it to send a 103 response with a Link header before sending the main response back to the browser?
From what I understand once a response sends something the state of that response is “sent”.
Motivation
HTTP/2 Server Push has been killed off and removed from Chrome. https://groups.google.com/a/chromium.org/g/blink-dev/c/K3rYLvmQUBY/m/vOWBKZGoAQAJ
The focus instead is on Early Hints, which allows the server to send a preliminary response back to the browser which has a Link header followed by what resources the browser can download while it waits. Then followed by the final response.
This isn’t supported fully in browsers yet but there’s experiments happening to see if it’s worth pursuing.
Is this something frameworks can implement or does there need to be changes at Node level?
Spec:
https://httpwg.org/specs/rfc8297.html
https://chromium.googlesource.com/chromium/src/+/master/docs/early-hints.md
https://www.fastly.com/blog/beyond-server-push-experimenting-with-the-103-early-hints-status-code
The text was updated successfully, but these errors were encountered: