Languages that aren't async by default (most of them) make async tedious when you do want it. A web application is precisely the sort of thing I want async. So it's in fact an extra step to write async code in most languages when building a web app.
For example, just firing off a few requests (database, other APIs) in a route and awaiting them. JS makes this trivial.
Languages that aren't async by default (most of them) make async tedious when you do want it. A web application is precisely the sort of thing I want async. So it's in fact an extra step to write async code in most languages when building a web app.
For example, just firing off a few requests (database, other APIs) in a route and awaiting them. JS makes this trivial.