ECMAScript - Introducing Dynamic Imports in ES2020 (ES11)

March 8, 2021 5 min read ECMAScript

Introducing the "Dynamic Import" proposal, arriving with new import() keyword enabling to load a module on demand at runtime, which has been reached stage 4 in the TC39 process and is included in the language specification of 2020 - the 11th edition.

npm - Catching Up with Package Lockfile Changes in v7

February 8, 2021 7 min read npm

Introducing the changes that were done in the seventh version of npm for better performance while allowing deterministic and reproducible builds, focusing on the new package-lock.json format (v2) and Yarn's lockfile support.

React - Introducing Server and Shared Components

January 11, 2021 8 min read React Node.js

Explaining the idea behind the new experimental types of React components - Server Components and Shared Components, allowing to have rich interactivity of client-side applications with fast performance in the same ecosystem, leveraging the server-side.