Codeminer42's Engineering Blog
Frontend

Accessibility & Responsiveness in action – Why they matter
Many believe that making a website accessible and responsive means simply adding alt attributes to images and replacing header navigation with burger menus, right? But the truth is, accessibility goes…
How to consume APIs in React using Fetch and Async/Await
Learning to consume APIs is an essential step for anyone looking to create dynamic and interactive React applications. In this practical guide, we will explore how to use the fetch…
Async Code Demystified: Promises, Fetch, and useEffect
Before we start digging into the world of Promises, Fetch API, and related topics, it is important to understand the difference between synchronous (sync) and asynchronous (async) programming models. A…
Modern Approaches to Styling React Native Apps
React Native is a known framework for building mobile applications with React. In its workspace you will find some similarities with web development, such as styling. In RN apps, we…
Linters, Formatters… Same Thing? — Static Analysis Clarified
Let’s dive into the importance of static analysis while developing apps. (Because yes, formatters and linters are different, even though both play crucial roles in our code!) These automated checks…