Hacker News new | ask | show | jobs
by krisdol 3773 days ago
Or don't use undeveloped language features until they're available. I'm very happy with the subset of ES6 available on node, but I never shared the complaints many people have of "callback hell". It's really not difficult to deal with and adding promises doesn't magically make it better, I've seen my share of promise hell.
1 comments

Yes, except that the asynchronous hells finally go away when you start using async/await. Makes code easy to read, write, and reason about.