Two React Design Choices Developers Don’t Like—but Can’t Avoid, by @ryansolid.bsky.social:

https://dev.to/playfulprogramming/two-react-design-choices-developers-dont-like-but-cant-avoid-d6g

#react #solidjs #asynchronicity

Two React Design Choices Developers Don’t Like—But Can’t Avoid

Developers have never been shy about disliking certain React APIs. They feel awkward, restrictive, or...

DEV Community
Why JavaScript Needs Structured Concurrency | Blog | Effection

Structured programming tamed the chaos of early computing. Structured concurrency does the same for async — and Effection brings it to JavaScript.

Async React

YouTube

Understanding “Promise.any()”: When One Success Is Enough, by (not on Mastodon or Bluesky):

https://allthingssmitty.com/2025/08/25/understanding-promise-any-when-one-success-is-enough/

#javascript #promises #asynchronicity

Understanding Promise.any(): when one success is enough - Matt Smith

Learn how Promise.any() helps you handle multiple promises by resolving with the first success, perfect for fallback APIs and progressive features in JavaScript.

Learning Web Development: Asynchronous JavaScript—Promises and “async” Functions, by @rauschma:

https://2ality.com/2025/09/javascript-async.html

#javascript #asynchronicity #promises #functions

Learning web development: Asynchronous JavaScript – Promises and async functions

In this chapter, we learn how to handle tasks that take a long time to complete – think downloading a file. The mechanisms for doing that, Promises and async functions are an important foundation of JavaScript and enable us to do a variety of interesting things.

Is There an “AsyncLocalStorage” Penalty?, by (not on Mastodon or Bluesky):

https://archive.fo/lJvpu

#nodejs #asynchronicity #performance

Modern Async Iteration in JavaScript With “Array.fromAsync()”, by (not on Mastodon or Bluesky):

https://allthingssmitty.com/2025/07/14/modern-async-iteration-in-javascript-with-array-fromasync/

#javascript #arrays #asynchronicity

Modern async iteration in JavaScript with Array.fromAsync() - Matt Smith

JavaScript's 'Array.fromAsync()' offers a concise alternative to 'for await...of' when working with async iterables and streams.

Modern Node.js Patterns for 2025

Using “await” at the Top Level in ES Modules, by (not on Mastodon or Bluesky):

https://allthingssmitty.com/2025/06/16/using-await-at-the-top-level-in-es-modules/

#javascript #esm #asynchronicity

Using await at the top level in ES modules - Matt Smith

Modern JavaScript is evolving. Learn how top-level 'await' works, where to use it, and when to avoid it in your modules.

Cold vs. Hot Observables in Angular With RxJS, by (not found on Mastodon or Bluesky):

https://archive.fo/aXZ6u

#angular #asynchronicity #reactivity #examples #terminology