Tag: javascript

Pacharapol Withayasakpunt Pacharapol Withayasakpunt
Wed, November 25, 2020

In short, don't execute thousands of Promises at once. Please either,

  • Do in batch
  • Keep space between ones

And this applies not only to JavaScript, but also anything that are parallel, or parallel-like in nature, including Threads.

Pacharapol Withayasakpunt Pacharapol Withayasakpunt
Thu, October 1, 2020

Due to vast popularity of NOT Node.js, but JavaScript itself, and web browsers, I see Deno as a scripting language platform for JavaScript and WASM. It also supports JSDOM, therefore all web browser methods.

It makes JavaScript and WASM comparable to JVM bytecode; but rather for dynamic typing.