Hacker News new | past | comments | ask | show | jobs | submit login

I think the JavaScript/npm world has trained a generation of devs that high dependency counts are a code smell. This can be true, of course, but that's largely because of external factors.

In a perfect world, a language's ecosystem would have a tiny stdlib and allow importing of libraries for everything else. The Linux philosophy would be followed strictly.

The problem is just that the overhead in securing, maintaining, and organizing all those libraries is pretty large, as we've seen by npm's repeated failures. Of course the *nix community seems to have largely solved the problem, but there's also a massive culture of volunteerism benefiting them.




I think there’s definitely room for mirrors of package repos that focus on a stablized and audited subset of packages, with frequent security and bug backports and medium-length cycles for new features — like what Fedora and Debian do, but for language ecosystems.


Agreed. ActiveState has had that as a commercial offering for quite some time (https://www.activestate.com/products/) and Red Hat is getting into it with (OpenShift) Application Runtimes. Given that providing such a thing is hard not-so-fun work I have a hard time seeing it getting available for free. (ASP).NET Core might be alone in being well-financed and free, something I think will lure (enterprise software) developers over long-term.


I believe Deno is doing this.

For a FOSS language, a large stdlib can be similar to a curated repo in practice.


UNIX philosophy. You mean the UNIX philosophy.


>…the Linux philosophy is "laugh in the face of danger". Oops. Wrong one. "Do it yourself". That's it.

- torvalds


I did. Thank you for the correction. Linux did, for most of its history, do an admirable job of upholding that philosophy though.


Care to elaborate? Linux is a huge monolithic kernel, isn't this the exact opposite of the UNIX philosophy?


The ecosystem, not the kernel. Linux packages are relatively good about doing one small thing well.


It is safe to say that it is unrealistic to expect that developers in the real world audit their dependencies.

I'd imagine a feasible solution being a permission-based system (which might already exist), where programs and their dependencies do not have access to certain facilities, like the filesystem, other processes or the network, without them being declared in a manifest file of sorts. Permissions should be inheritable when explicitly specified, and a sub-dependency could not gain a permission it didn't inherit from its parent. Unfortunately this does not work so well with a shell, since the shell needs the ability to spawn arbitrary processes. At least the shell itself would not have network access, forcing it to rely on tools already installed in the system

Also, if we resort to some magical wishful thinking, then all the tools in the system follow this permission model and the package manager is aware of the permissions. You could then query the package manager for all installed software with a certain capability, like network access, disabling tools like curl and netcat.


The key difference between typical GNU/Linux distributions and the npm/cargo model is that the set of packages available in the distributions is to some extent curated.


I hope that I implied that point when discussing the labor required for a highly modular ecosystem to function well.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: