DEV Community

Discussion on: 10 npm Commands that every developer must know

Collapse
 
robinvanderknaap profile image
Robin van der Knaap

What about npm audit and npm audit fix for security fixes?

Collapse
 
gurshehzadsingh profile image
Gurshehzad Singh

Yes, they can be added here. But i just wanted to keep it brief so that new developers can get a glimpse of how to start working with npm

Collapse
 
admmasters profile image
Matt Revell

Might be a good shout to add it (npm audit) to your ci pipeline on push to repo, assuming you are using a ci system.

Collapse
 
danielp profile image
Daniel Parmenvik

I agree with you Robin that security issues and remediation should be an important part. But I would 10/10 times use a tool that continuously checks that for you. Doing it manually is prone to fail at some time.

Collapse
 
robinvanderknaap profile image
Robin van der Knaap

Absolutely!