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

Can we supress the new experimental warning from the new default require(esm) setting? #55417

Open
futuremotiondev opened this issue Oct 17, 2024 · 12 comments
Labels
question Issues that look for answers.

Comments

@futuremotiondev
Copy link

futuremotiondev commented Oct 17, 2024

What is the problem this feature will solve?

I use NVM for Windows.

  1. I run nvm install 23.0.0
  2. v23.0.0 gets installed.
  3. I then run nvm use 23.0.0
  4. I then run npm install npm@latest -g

The latest npm gets installed, but I also get the following output pollution:

(node:32728) ExperimentalWarning: Support for loading ES Module in require() is an experimental feature and might change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
  1. If I then run npm install svgo -g, I get the same ExperimentalWarning pollution.

Is there any way I can suppress this message by default while still leaving the new default require(esm) setting enabled? I don't want to see this warning every time I install a global package, especially since I am automating things.

This doesn't happen with any node versions prior to 23.0.0.

Appreciate any consideration.

What is the feature you are proposing to solve the problem?

A global configuration setting to suppress this new warning every time I install a global module in v23.0.0:

(node:32728) ExperimentalWarning: Support for loading ES Module in require() is an experimental feature and might change at any time
(Use `node --trace-warnings ...` to show where the warning was created)

What alternatives have you considered?

Nothing yet.

@futuremotiondev futuremotiondev added the feature request Issues that request new features to be added to Node.js. label Oct 17, 2024
@targos
Copy link
Member

targos commented Oct 17, 2024

You can use node --no-deprecation or export NODE_OPTIONS="--no-deprecation".

@targos
Copy link
Member

targos commented Oct 17, 2024

Or disable require('esm') with --no-experimental-require-module

@futuremotiondev
Copy link
Author

You can use node --no-deprecation or export NODE_OPTIONS="--no-deprecation".

How can I do this globally though?

export NODE_OPTIONS="--no-deprecation" in console just gives me

export: The term 'export' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

Am I missing something?

@futuremotiondev
Copy link
Author

futuremotiondev commented Oct 17, 2024

I also created a machine-wide environment variable called NODE_OPTIONS and set its value to --no-deprecation. I'm still getting the ExperimentalWarning. It's even happening when I run npm list -g --depth=0.

Code_wPiOhZGpMp

And yes I tried restarting the console so the environment variable gets refreshed, but still the same output.


EDIT: Printing $env:NODE_OPTIONS in PowerShell after restarting my host and console outputs a blank line instead of my set value of --no-deprecation

@targos targos added question Issues that look for answers. and removed feature request Issues that request new features to be added to Node.js. labels Oct 17, 2024
@targos
Copy link
Member

targos commented Oct 17, 2024

I don't know much about Windows, sorry.

@RedYetiDev
Copy link
Member

RedYetiDev commented Oct 17, 2024

This feature is experimental, so it emits a warning. IMHO this is working as intended.

If npm is using an experimental feature, it should be their responsibility to figure out how to handle the warning

@climba03003
Copy link
Contributor

I believe he is asking for a way to not showing the warning.
https://nodejs.org/api/cli.html#--disable-warningcode-or-type

node --disable-warning=ExperimentalWarning

@indriyam
Copy link

indriyam commented Oct 18, 2024

Having same error. Partly resolved in local terminal by removing and installing node and npm. Now when running from local terminal no error message. Else this was throwing whenever I was using npm like npm install, npm start etc.

Also installed tsx and recommended in search. So that works without error.

But when using skaffold dev it getst stuck at the following two lines
#9 [4/5] RUN npm install --omit=dev
#9 2.481 (node:1) ExperimentalWarning: Support for loading ES Module in require() is an experimental feature and might change at any time
#9 2.481 (Use node --trace-warnings ... to show where the warning was created)
In my case it is not moving further and fails when press Ctrl+C after waiting...
So it not just warning. It hangs out so issue is critical to me.
Wondering how it was working all good till. In last three days, this issue props up.

Lot of googling but no luck.

@MikeMcC399
Copy link

@RedYetiDev

This feature is experimental, so it emits a warning. IMHO this is working as intended.

If npm is using an experimental feature, it should be their responsibility to figure out how to handle the warning

For example, even with no npm modules installed, executing npm view npm version results in the ExperimentalWarning:

$ npm view npm version
(node:5212) ExperimentalWarning: Support for loading ES Module in require() is an experimental feature and might change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
10.9.0

Many other often-used npm cli commands also provoke the warning:

npm audit
npm ci
npm doctor
npm init
npm install
npm install-ci-test
npm ls
npm outdated
npm prune
npm repo
npm show
... etc

@RedYetiDev
Copy link
Member

My point is, I don't believe this is a bug in the Node.js project. In npm–perhaps, however, on this side of the ecosystem, at least how I see it, the feature should, by default, emit a warning.

@MikeMcC399
Copy link

@MikeMcC399
Copy link

The warning from npm 10.9.0 under Node.js v23.0.0 comes from the use of the ESM version of supports-color >= 9.0.0 by npm with debug using require() to test if supports-color is available.

See the following for more details:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Issues that look for answers.
Projects
None yet
Development

No branches or pull requests

6 participants