Contributions

Article
Let's explore best practices to prevent flaky tests in Selenium, enhancing reliability and consistency in CI systems.
Article
Playwright is an excellent UI and E2E testing tool. Here are a few tips on avoiding flaky tests on Playwright
Article
This guide compares HTMX and React, covering origins, features, performance, community, and functionality differences.
Tutorial
How to integrate Redis into Node.js and go from an average response time of 272ms to 22 ms, Plus, how to save RAM thanks to cache compression!
Article
Learn what a Node.js routing layer is, the main benefits it can bring to the backend architecture, and how to implement it.
Article
Learn what a constants layer is, why you need it in your JavaScript project, how to implement it, and what benefits it can bring to your architecture.
Article
This article discusses the increasing importance of securing Node.js due to rising online attacks, offering 15 best practices.
Article
Learn what a routing layer is, understand some of the several benefits it can bring to your architecture, and how to build it in React.
Article
Learn what a routing layer is, understand some of the several benefits it can bring to your architecture, and how to build it in React.
Article
The article discusses the importance of error handling in web applications and provides a step-by-step guide on how to implement an error handling layer in React. The article highlights the errors that can occur in a web application and the potential negative impact they can have on user experience. Then, it goes on to explain how to use React's error boundaries to create an error handling layer that can gracefully handle errors and prevent them from affecting the rest of the application.
Article
An API layer is the part of the backend application that contains the programming logic to send and receive data via an Interface (API). Thus, all the calls to external APIs that a backend application makes pass through this layer. This concept is not new, and you can also use an API Layer in a frontend architecture.