+1 vote
in NodeJS Essentials by

How can you make sure your dependencies are safe?

1 Answer

0 votes
by
When writing Node.js applications, ending up with hundreds or even thousands of dependencies can easily happen.

For example, if you depend on Express, you depend on 27 other modules directly, and of course on those dependencies' as well, so manually checking all of them is not an option!

The only option is to automate the update / security audit of your dependencies. For that there are free and paid options:

Related questions

+1 vote
asked May 30, 2020 in NodeJS Essentials by SakshiSharma
+1 vote
asked May 31, 2020 in NodeJS Essentials by Robindeniel
...