“It would appear that we have reached the limits of what it is possible to achieve with computer technology, although one should be careful with such statements, as they tend to sound pretty silly in 5 years”
CPU intensive work will block the Node.js event loop, so it's not a great thing to do in Node.js. But what if you really have to do some CPU intensive work? This article explores the worker_threads module and how it can be used to offload CPU intensive work to another thread, so that our event loops does not get blocked.
Cumulative Layout Shift (CLS) is one of the hardest core web vital to debug. In this article, we go through different tools to investigate CLS, when to use them (and when not), and solutions to some of the CLS issues we faced in our Next.js-based e-commerce website.
Which new framework should I learn this year? Is it time to ditch my CMS? What tools should I pick up if I want to scale my site? In this developer survey you can learn what are the web technologies most loved by JAMStack developers.
This article discusses performance best practices that you can use when loading third-party embeds, efficient loading techniques and the Layout Shift Terminator tool that helps reduce layout shifts for popular embeds.
Releasing software often is a good thing and it can improve the quality of your work and the dynamics within your teams. In this article you can find a more in-depth analysis of this idea.
It's now possible to properly cancel an HTTP request in Node.js. Let's learn how the Abort API can help us.
Book of the week
React.js Essentials
by Artemij Fedosejev
A fast-paced guide to designing and building scalable and maintainable web apps with React.js. Begin by exploring how you can create single and multiple user interface elements. Create stateless and stateful components and make them reactive, learn to interact between your components and lifecycle methods and gauge how to effectively integrate your user interface components with other JavaScript libraries. Delve deep into the core elements of the Flux architecture and learn how to manage your application using stores. Finish by going that extra mile with the Jest test framework, running multiple tests on your application and find solutions to scale it further without complexity.