6 ms·
> This is JS. Dependency hell is par for the course. Is there any programming language that does not suffer from dependency hell?
by simplotek 3y ago
> This is JS. Dependency hell is par for the course.
Is there any programming language that does not suffer from dependency hell?
- pier25 3y agoObviously it's a matter of degree, but languages with a better standard library seem less affected by dependency hell.
- simplotek 3y ago> (...) but languages with a better standard library seem less affected by dependency hell. Let's ignore the hand-waving over what "better standard library" means. Dependency hell has zero to do with standard libraries, and is exclusively related to modularity. If your language supports third party modules that can depend on third party modules, you have dependency management. Managing dependencies so far is hell, no matter how you go about it.
- pier25 3y agoOf course it's related. The more the standard library provides for you, the less you need to rely on third party dependencies.