|
|
|
|
|
by kylecordes
3748 days ago
|
|
If things continue on the current path, I would be surprised if a typical 2018 node/NPM-based application only pulled in 1000 libraries (transitively). I just checked an application under development here: $ ls node_modules | wc -l
517 Then I checked the current Angular 2 repository: $ ls node_modules | wc -l
804 (Kudos to NPM 3 for finally flattening node_modules; in addition to reducing duplication and making life less miserable on Windows, it is now much more obvious how the transitive dependencies explode.) Given the ongoing trend toward each dependency having more dependencies of its own, 1000 doesn't sound like much of a stretch. How many of those 1000+ will be up to date and lacking in critical security or functionality bugs? It sure won't be 100%. It makes me look longingly at languages which ship with a reasonable standard library. |
|