top | item 39908312

(no title)

kyruzic | 1 year ago

I do agree with this, but I'd argue the developer experience of nodejs with Typescript is far worse than that of rust/go

discuss

order

rohan_|1 year ago

React Server Components is the best possible DX for a react backend

dboreham|1 year ago

Agree. JS/TS is not a good environment for large software projects maintained over a long period of time. I'm not 100% convinced Rust is either, yet. cargo seems to be a dumpster fire. Build tools generate TB of mystery disk bloat. Obsession with async... hopefully these issues can be resolved.

brink|1 year ago

> Build tools generate TB of mystery disk bloat.

No, it's not TB, it's a few GB for small projects, and tens of GB for large projects. Rarely does a project ever get over 30-40GB.

> Obsession with async...

If you're going to want any amount of decent performance, you're going to have to deal with async. That's just the nature of IO bound applications.

HumanOstrich|1 year ago

> JS/TS is not a good environment for large software projects maintained over a long period of time.

VSCode disagrees with you. Its codebase is fascinating btw.