-
Notifications
You must be signed in to change notification settings - Fork 3
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
[Meeting] 2022-12-01 08:00am Pacific time #41
Comments
"Node.js Spec" Its been discussed previously (before WinterCG was even founded), and now it is making rounds again. Would like to hear people's thoughts on it especially motivations and how it would fit into the WinterCG world (we already have minimum common api proposal). |
I would like to continue a discussion regarding the In In WHATWG spec it says that it needs to return an opaque-redirect filtered response where status code is 0, status text is empty string, and type is However in Node.js the behavior is different: the status code is 3xx (meaning redirect), and the status text is the HTTP message that matches the redirect code. The type is I also checked Deno and observed similar behavior. So I would like to have a discussion regarding the details of manual redirects in I am raising this topic because I am working with service workers at my company, and in those scenarios people may be interested in what the exact redirected URLs are and use them in the workers accordingly. In the browser environment it makes sense not to have everything transparent when it comes to handling redirects, for better security protection. However in the worker environment such protection may make much less sense; instead, service workers may do a variety of different things to handle the redirect. Prior discussions:
|
For reference, here is what I presented today: https://gist.github.com/dom96/11fa8f568c9ae99a77784d9699f05a24 |
To Do:
|
Meeting recording link: https://us06web.zoom.us/rec/share/l2hIkjKjrEpoiW99BFpkOcrPgk8h7waa4ND5ECbPfZ_BpNHciS5e2NTkRJkAdDod.75-aHKWiklEAkyW0 |
Agenda items:
node:...
specifier prefix for built-in modules, Deno just introduced use of thenpm:...
specifier prefix for npm modules. In Workers, we are starting on Node.js-compatibility using thenode:...
prefix. Should we standardize on these prefixes? Would the runtime keys help here?The text was updated successfully, but these errors were encountered: