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 Early Hints (103) ? #2683

Closed
jasonwilliams opened this issue Nov 11, 2020 · 26 comments
Closed

Support for Early Hints (103) ? #2683

jasonwilliams opened this issue Nov 11, 2020 · 26 comments
Labels
feature request New feature to be added semver-minor Issue or PR that should land as semver minor

Comments

@jasonwilliams
Copy link

jasonwilliams commented Nov 11, 2020

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

@mcollina
Copy link
Member

You could write directly to reply.raw.socket an HTTP response with 103 status code.

@jasonwilliams
Copy link
Author

@mcollina thanks I was not aware of that!

@zekth
Copy link
Member

zekth commented Nov 12, 2020

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

curl -D - http://localhost:3000    

HTTP/1.1 103 Early Hints
Link: </style.css>; rel=preload; as=style
Link: </script.js>; rel=preload; as=script

HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
content-length: 17
Date: Thu, 12 Nov 2020 14:18:21 GMT
Connection: keep-alive

{"hello":"world"}

@mcollina
Copy link
Member

That'd be the idea, yes

@zekth
Copy link
Member

zekth commented Nov 12, 2020

it's an interesting feature and we can make a plugin for that. I'll make a draft repo for it.

@zekth
Copy link
Member

zekth commented Nov 12, 2020

Here is the draft repo i've written: https://github.com/zekth/fastify-early-hints
Feel free to comment / contribute.
Also for testing, it seems that i can't acces the full HTTP message throught the reply.raw, i might need to spawn a curl process to check the message. Any other idea?

@delvedor
Copy link
Member

I love so much the Fastify plugin system ❤️

@mcollina mcollina reopened this Nov 13, 2020
@mcollina
Copy link
Member

Amazing work @zekth! Is it on npm yet? PR to the ecosystem page?

@Eomm
Copy link
Member

Eomm commented Nov 13, 2020

Any other idea?

I think 103 status is not supported yet by the node core (cause it is still in draft IMHO).
For example there the 100-Continue is supported by the http client but 103 doesn't emit any events and searching on the nodejs repo there isn't such test.

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 server push in this scenario?

@zekth
Copy link
Member

zekth commented Nov 13, 2020

@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.

@stale
Copy link

stale bot commented Dec 19, 2020

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.

@stale stale bot added the stale Issue or pr with more than 15 days of inactivity. label Dec 19, 2020
@mcollina mcollina added feature request New feature to be added enhancement labels Dec 19, 2020
@zekth
Copy link
Member

zekth commented Nov 1, 2021

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

@stale stale bot removed the stale Issue or pr with more than 15 days of inactivity. label Nov 1, 2021
@derhuerst
Copy link

derhuerst commented Aug 18, 2022

FYI: On 2022-06-21, Chrome 103 became stable, which supports 103.

@mcollina
Copy link
Member

Support for early hints landed in Node.js core: nodejs/node#44180.
This will likely be in Node.js v18.8.0 and likely backported to Node.js v16.
I'm not sure we should do anything to support it (possibly we should forward the call to Node core).

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.

@Eomm
Copy link
Member

Eomm commented Sep 24, 2022

There is this plugin https://github.com/zekth/fastify-early-hints from @zekth we could start from.

The first step, migrating to fastify v4?

@zekth
Copy link
Member

zekth commented Sep 24, 2022

@Eomm I'm +1. I can transfer ownership

@Eomm
Copy link
Member

Eomm commented Sep 25, 2022

Go for it, then we will update it 👍🏽
Easy GitHub activity 🟩🟩🟩🟩🟩🟩 😄

@zekth
Copy link
Member

zekth commented Sep 25, 2022

Done

@mcollina
Copy link
Member

@zekth can you add me to npm so I can add it to the org?

@delvedor
Copy link
Member

Can we close this one?

@Uzlopak
Copy link
Contributor

Uzlopak commented Oct 31, 2022

@mcollina
We never released the plugin.

@Eomm
Copy link
Member

Eomm commented Oct 31, 2022

@mcollina
Copy link
Member

@mcollina

We never released the plugin.

why?

@mcollina mcollina reopened this Oct 31, 2022
@Uzlopak
Copy link
Contributor

Uzlopak commented Oct 31, 2022

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.

@climba03003
Copy link
Member

It can be released, but it can improve to use the native one when possible.
Not sure if it should be released as 1.0.0?

@climba03003
Copy link
Member

I choose to release in a major to imply it is migrated to organization and a stable release.
https://www.npmjs.com/package/@fastify/early-hints

@Eomm Eomm added the semver-minor Issue or PR that should land as semver minor label Apr 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature to be added semver-minor Issue or PR that should land as semver minor
Projects
None yet
Development

No branches or pull requests

8 participants