Last Updated: June 21, 2019
·
356
· whatishedoing

Filtering install commands from npm audit in Powershell

npm packages woefully out of date? Chances are, you're struggling to see what install commands would reduce npm audit warnings. Filter them easily in PowerShell with:

npm audit | Where { $_ -match "# Run.*" }