Hacker News new | ask | show | jobs
by SwellJoe 4666 days ago
Callbacks are possibly not the best way to solve concurrency issues. Node.js does it that way, but there's no inherent reason JavaScript should only solve concurrency problems with callbacks. It would be possible to implement a wide variety of concurrency models in JavaScript, and I'm sure people have and will. Node.js happens to be the early winner in that space.

We are still pretty early in the JavaScript story on the server side.