@devexpress/bin-v8-flags-filter

Filters out V8 flags for Node.js CLI tools

npmmacoslinuxwindows
Try with needOr install directly
Source

About

Filters out v8 flags for your Node.js CLIs.

Commands

v8-flags-filter

Examples

Filter V8 flags from command arguments$ v8-flags-filter --expose-gc --max-old-space-size=4096 script.js
Process arguments in a Node.js CLI wrapper$ node -e "const filter = require('@devexpress/bin-v8-flags-filter'); console.log(filter(process.argv.slice(2)))"
Remove V8-specific flags before passing to child process$ v8-flags-filter --trace-warnings --inspect=9229 app.js arg1 arg2