Skip to content Skip to sidebar Skip to footer

How To Check If Npm Packages Installed In The App Have Vulnerabilities?

I have a React Js app and I will like to know if the npm packages installed and third-party libraries have vulnerabilities. Thank you.

Solution 1:

Run npm audit.

From the docs:

Scan your project for vulnerabilities and automatically install any compatible updates to vulnerable dependencies

Post a Comment for "How To Check If Npm Packages Installed In The App Have Vulnerabilities?"