This looks exactly like zx by Google. And that's probably a good thing. https://github.com/google/zx
Being in the Google GitHub org doesn't mean "by Google", it means "by someone who works at Google."
The Bun Shell
111–120 of 239 posts
Re: The Bun Shell
#112Perl and Python already went through this path without much uptake.
Re: The Bun Shell
#113One of the selling points of this post is that bash is slow to start. But how fast is bun shell? Have anyone compared bash and bun shell start times?
Re: The Bun Shell
#114fyi, the src: https://github.com/oven-sh/bun/tree/main/src/shell
Re: The Bun Shell
#115Re: The Bun Shell
#116Re: The Bun Shell
#117I work on Bun - happy to answer any questions/feedback
This is super cool, but can you fix bun -i so that it actually auto installs missing libs? That would really help with having self-contained scripts. Then I can finally start replacing my shell scripts with bun.
Re: The Bun Shell
#118Minor tangent, but plucked from that article, why is ‘rimraf’ downloaded 60m+ time a week?! Why is that a thing that need a library? (Asking as a systems guy, not a programmer)
Re: The Bun Shell
#119Great, it's approaching the ergonomics of what Perl has offered for decades. And Perl still does it better.
Re: The Bun Shell
#120Minor tangent, but plucked from that article, why is ‘rimraf’ downloaded 60m+ time a week?! Why is that a thing that need a library? (Asking as a systems guy, not a programmer)
It’s quite often used in npm scripts to cleanup stuff (say, between builds), and many developers prefer that over native solutions like `rm` and `del` as it gives them a cross-platform way of cleaning up files and folders.