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

esm(network imports): expose User-Agent header #43851

Closed
Fyko opened this issue Jul 15, 2022 · 5 comments · May be fixed by #43852
Closed

esm(network imports): expose User-Agent header #43851

Fyko opened this issue Jul 15, 2022 · 5 comments · May be fixed by #43852
Labels
esm Issues and PRs related to the ECMAScript Modules implementation. feature request Issues that request new features to be added to Node.js. stale

Comments

@Fyko
Copy link

Fyko commented Jul 15, 2022

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.

let HTTPSAgent;
function HTTPSGet(url, opts) {
const https = require('https'); // [1]
HTTPSAgent ??= new https.Agent({ // [2]
keepAlive: true,
});
return https.get(url, {
agent: HTTPSAgent,
...opts,
});
}
let HTTPAgent;
function HTTPGet(url, opts) {
const http = require('http'); // [1]
HTTPAgent ??= new http.Agent({ // [2]
keepAlive: true,
});
return http.get(url, {
agent: HTTPAgent,
...opts,
});
}

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.

@Fyko Fyko added the feature request Issues that request new features to be added to Node.js. label Jul 15, 2022
@VoltrexKeyva VoltrexKeyva added the esm Issues and PRs related to the ECMAScript Modules implementation. label Jul 15, 2022
@JakobJingleheimer
Copy link
Member

FYI we're considering replacing fetch_module with fetch

@Fyko Fyko changed the title esm: expose User-Agent header esm(network imports): expose User-Agent header Sep 18, 2022
@targos targos moved this to Pending Triage in Node.js feature requests Oct 22, 2022
@github-actions github-actions bot added the stale label Mar 18, 2023
@nodejs nodejs deleted a comment from github-actions bot Mar 18, 2023
@bnoordhuis
Copy link
Member

bnoordhuis commented Mar 18, 2023

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.

@renhiyama
Copy link

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: Node/{version}

It would help servers polyfill features if not supported on current version of nodejs, etc

Copy link
Contributor

github-actions bot commented Jan 7, 2024

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.

@github-actions github-actions bot added the stale label Jan 7, 2024
Copy link
Contributor

github-actions bot commented Feb 7, 2024

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.

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Feb 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
esm Issues and PRs related to the ECMAScript Modules implementation. feature request Issues that request new features to be added to Node.js. stale
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants