@devexpress/bin-v8-flags-filter

Remove V8 engine flags from Node.js CLI arguments automatically.

npmmacoslinuxwindows
Try with needOr install directly
Source

About

Filters out v8 flags for your Node.js CLIs.

Commands

v8-flags-filter

Examples

filter out v8 flags from node command arguments$ v8-flags-filter --expose-gc --max-old-space-size=4096 myScript.js
pass through only valid node script arguments$ v8-flags-filter --trace-warnings --input-type=module app.js
clean up mixed v8 and script flags for cli tools$ node -r v8-flags-filter/register mycli.js --help
prevent v8 flags from breaking custom cli argument parsing$ v8-flags-filter --no-warnings --enable-source-maps script.js --myarg value
extract script arguments while stripping v8 engine options$ v8-flags-filter --jitless --prof-process myapp.js --config file.json