npm disable audit in .npmrc
npm can get noisy during installs with the audit report:
1 vulnerabilities (0 moderate, 1 high)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Dan Abramov has a great write-up on why npm audit is broken by design - it is worth the read.
You can disable the audit for all npm commands using .npmrc
:
audit=false
loglevel=silent