-
Notifications
You must be signed in to change notification settings - Fork 31.2k
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
esm(network imports): expose User-Agent
header
#43851
Comments
FYI we're considering replacing fetch_module with fetch |
User-Agent
headerUser-Agent
header
The ask is basically to add this? diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js
index d79e5a5eb99..7a52ae4c985 100644
--- a/lib/internal/modules/esm/fetch_module.js
+++ b/lib/internal/modules/esm/fetch_module.js
@@ -124,6 +124,7 @@ function fetchWithRedirects(parsed) {
const result = (async () => {
const req = handler(parsed, {
headers: { Accept: '*/*' },
+ 'User-Agent': 'node',
});
// Note that `once` is used here to handle `error` and that it hits the
// `finally` on network error/timeout. Pull request welcome, I think? Adding the version might leak a little too much info but then again, maybe not. edit: I missed #43852 already exists and met some fierce opposition. |
I would suggest something more informative + align with deno user agent: It would help servers polyfill features if not supported on current version of nodejs, etc |
There has been no activity on this feature request for 5 months and it is unlikely to be implemented. It will be closed 6 months after the last non-automated comment. For more information on how the project manages feature requests, please consult the feature request management document. |
There has been no activity on this feature request and it is being closed. If you feel closing this issue is not the right thing to do, please leave a comment. For more information on how the project manages feature requests, please consult the feature request management document. |
What is the problem this feature will solve?
We're building a registry server to serve our JavaScript packages in a variety of runtimes -- Node.js, Deno and the browser. Both the browser and Deno include a
User-Agent
header, but Node doesn't.What is the feature you are proposing to solve the problem?
I propose altering the GET functions to include the user-agent header.
node/lib/internal/modules/esm/fetch_module.js
Lines 47 to 69 in 5e3d003
However, this poses some security concerns. Should it be exposed by default? Should there be another flag?
node --experimental-network-imports --experimental-network-imports-expose-ua ./foo.mjs
.The text was updated successfully, but these errors were encountered: