Articles about JavaScript

JavaScript is the language that powers most of the interactivity on websites and web apps. It can also be used outside of browsers thanks to runtimes such as NodeJS or Deno. This is the language I work with most of the time, although most often I write and read its statically-typed superset: TypeScript.

JSWorld Conference 2024 impressions

Here is how JSWorld Conference 2024 in Amsterdam looked like from my perspective.

Read more

Upgrade scoped packages with yarn

yarn up '*' does not upgrade scoped packages by default. This article describes how to upgrade scoped packages.

Read more

Next.js getServerSideProps interception

Next.js can seem stuck fetching getServerSideProps result on client-side navigations. The approach outlined in the article bypasses making that network request, resulting in snappier UI, suitable for highly-interactive web applications.

Read more

Catch rejections in every Promise chain

In Node.js, omitting catching a rejection in at least one Promise chain leads to an unhandledRejection event and the process being usually killed.

Read more

JavaScript's promised convenience

JavaScript Promise's then function offers extra convenience. Is it harmful, though?

Read more