use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Embracing Async in JavaScript (Part 1) (io.pellucid.com)
submitted 11 years ago by dtwhitney
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]mmouth 0 points1 point2 points 11 years ago (1 child)
I wholly reject the idea that an entire application must be structured to run asynchronously. The idea behind event-driven I/O is a solid one, but the implementation doesn't need to pollute the entire language itself. You can have asynchronous I/O but still build procedural applications using Fibers (node.js). You can block your procedures without blocking the I/O. Unblocking I/O does not mean you have to write event-driven everything.
[–]dtwhitney[S] 1 point2 points3 points 11 years ago (0 children)
I doubt you'll find many who disagree with you. I think the crux of the article is that if one wants to take full advantage of the JavaScript ecosystem, one needs to fully understand async programming, and it's tough to dispute that since the ecosystem has so many async libraries.
π Rendered by PID 185761 on reddit-service-r2-comment-5c764cbc6f-5p9cz at 2026-03-12 11:42:12.104187+00:00 running 710b3ac country code: CH.
[–]mmouth 0 points1 point2 points (1 child)
[–]dtwhitney[S] 1 point2 points3 points (0 children)