Live data from Hacker News

The Bun Shell

bun.sh

111–120 of 239 posts

Re: The Bun Shell

#111
post #109

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."

But doesn't he get paid by Google to code this?

Re: The Bun Shell

#115
post #82

Earlier quoted context omitted.

I'd argue the opposite: more computers have an end-user accessible JavaScript engine (a browser) than an end-user accessible shell.

It really depends on how you define "computer".

Let's not forget, "3 billion devices run Java"

Re: The Bun Shell

#117
post #16

I 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

#118
Minor 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

#120

Minor 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.
Post reply on HN