Remix.run Logo
Jarred 4 days ago

I work on Bun and also spent a lot of time optimizing bun install. Happy to answer any questions

norman784 3 days ago | parent | next [-]

AFAIK `bun install` is similar to `npm install` in the sense that it installs everything in a flat structure inside node modules, why didn't you choose something like pnpm that I believe is better, because you cannot by mistake import a transitive dependency. Maybe that's a non issue for most, but I care about those things.

Jarred 3 days ago | parent [-]

You can use `bun install --linker=isolated`, which we might make the default in Bun v1.3. The main downside is it makes your app load slightly slower since now every file path is a symlink.

https://bun.sh/docs/install/isolated

norman784 3 days ago | parent [-]

I didn't knew about it, thanks!

hu3 3 days ago | parent | prev | next [-]

Kinda offtopic but how to you manage to stay so productive for so long?

Vitamins/supplements? Sleep? Exercise? Vacations?

I have sprints of great productivity but it's hard to keep it for long.

nzoschke 4 days ago | parent | prev [-]

I just want to say thanks to you and the team and community. Bun is a treat to use.