Today I Learned

hashrocket A Hashrocket project

Prevent npm high level security errors in CI

In npm 6.6, a feature was added to provide security audit information for the packages that are used in your application.

This is run with:

node audit

This exits with a non-zero exit code if any 'low', 'medium', 'high', or 'critical' errors were detected.

You can use that non-zero return code in your CI to fail a check, which should notify you of the security vulnerability which you can then resolve.

If you care about 'high' or 'critical' errors but don't care about 'low' or 'medium' you can set the audit-level npm config value to 'high' in you npm configuration for your CI server.

See More #javascript TILs
Looking for help? At Hashrocket, our JavaScript experts launch scalable, performant apps on the Web, Android and iOS. Contact us and find out how we can help you.