2.0.0 • Published 3 months ago

suppress-experimental-warnings v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

suppress-experimental-warnings

Filters experimental warnings from Node.js CLI output.

When using experimental Node.js features like experimental loaders, Node.js outputs some annoying warnings that clutter the CLI:

(node:1710) ExperimentalWarning: Custom ESM Loaders is an experimental feature. This feature could change at any time
(Use `node --trace-warnings ...` to show where the warning was created)

This package filters those warnings but leaves the others where they are.

Install

# npm
$ npm install suppress-experimental-warnings

# Yarn
$ yarn add suppress-experimental-warnings

Usage

Via CLI

$ node --require=suppress-experimental-warnings --experimental-loader=node-esm-loader index.js

Via environment variable

$ NODE_OPTIONS="--require=suppress-experimental-warnings --experimental-loader=node-esm-loader" index.js

Via ESM

Since imports in ESM run async, we have to make sure that the import runs before all other imports. This is needed when you cannot pass suppress-experimental-warnings via a a CLI argument. Note that at the time of writing this documentation, the import order seems to be non-deterministic (also for sync import).

import 'suppress-experimental-warnings';

await import('./your-app.js');

Contribute

Are you missing something or want to contribute? Feel free to file an issue or a pull request! ⚙️

Support

Hey, I am Sebastian Landwehr, a freelance web developer, and I love developing web apps and open source packages. If you want to support me so that I can keep packages up to date and build more helpful tools, you can donate here:

Thanks a lot for your support! ❤️

License

MIT License © Sebastian Landwehr

2.0.0

3 months ago

1.1.17

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.16

1 year ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago