SINCE 2013

25th July 2025

Scroll Restoration REACT

React Router’s default behavior : React Router’s default behavior without scroll restoration does not preserve the scroll position when navigating between routes in a single-page application. This means that when users move to a new page or go back to a previous page, the scroll position typically resets to the top of the page instead of returning to where they left off. As a result, users may have to manually scroll back to their previous position, which can feel jarring and interrupt the browsing experience, especially on long pages like blog lists or feeds. What is ScrollRestoration in React Router? […]
16th June 2025

React vs Next.js: The Ultimate Showdown for Modern Web Development

The JavaScript landscape for web development is constantly evolving, and two frameworks, React and Next.js, have emerged as dominant players. But for software engineers facing a project decision, the question arises: which one is better? 1 : Understanding the Fundamentals React: The Building Block Library React, created by Facebook, is a declarative JavaScript library for building user interfaces (UIs). It emphasizes component-based architecture, where complex UIs are broken down into reusable components. Each component manages its own state and renders its UI based on that state. This modular approach promotes code maintainability and reusability. Here’s a breakdown of the core […]
6th March 2025

React Hooks

React Hooks are functions that enable functional components to use React state and lifecycle features. They eliminate the need for class components, making code cleaner and easier to maintain As you may know, React is a open-source library used to build user interfaces in a simpler and more efficient way than tools that came before (vanilla JS and jQuery mainly). It was developed by Meta (aka Facebook) and released to the public in 2013. Hooks were a feature introduced years later in 2016 (in React’s 16.8 version). Just to have an idea of what hooks are for and why are […]
6th February 2025

Higher Order Functions & Components in React JS

in this tutorial, we’ll be exploring the topic of higher order functions in React. Once we’ve covered the basics, we’ll delve deeper into the world of higher order components and examine how they can be used in real-world scenarios. Drawing from my own experience developing React applications, I’ll provide concrete examples to help you gain a thorough understanding of these concepts. So, let’s roll up our sleeves and get started on taking your React development skills to the next level! Table of content Higher Order Function: In React, a higher-order function is a function that takes one or more functions […]
25th December 2024

5 Top React Carousel Component Libraries and Their Usage Trends

1. React Slick Slider Slick began as a JavaScript and WordPress plugin and has been successfully adapted to React by a third-party developer. This transition demonstrates its versatility and popularity among developers. Slick is a top-notch choice when creating responsive sliders, offering an impressive array of carousel features. The additional fading effect sets it apart, adding elegance and sophistication to the sliding experience. Whether you need a simple scrolling carousel or want a more visually stunning presentation, Slick has covered you. 2. React Responsive Carousel The React Responsive Carousel library is a feature-rich and lightweight component for creating carousels. It […]
5th December 2024

React Native animation libraries

In a mobile app, animations can greatly impact user experience in terms of interactions and engagement. Animations can quickly become one of the key factors that users love engaging with on your mobile app. While building a React Native app, it is essential to think of user interactions. Animating some of the user actions can help improve user engagement within the app. In this post, we will cover a list of open source animation libraries for React Native that you can use for your next app, and compare them based on functionalities, ease of use, and popularity. React Native Reanimated […]
15th October 2024

Unique Features of React.js: Why It’s a Game Changer for Web Development

React.js has taken the web development world by storm with its simplicity, flexibility, and unique approach to building user interfaces. It’s more than just a JavaScript library for UI development; React introduces some remarkable features that make it stand out in a crowded field of frontend frameworks and libraries. Whether you’re a seasoned developer or just getting started, understanding these unique aspects of React can help you unlock its full potential. In this blog, we’ll dive into some of the most unique features of React.js that make it a favorite among developers worldwide. Virtual DOM for High Performance One of […]
7th October 2024

How to Work with useMemo in React – with Code Examples

useMemo is a valuable tool in the React framework, designed to optimize performance by memoizing expensive computations. With useMemo, React can store the result of a function call and reuse it when the dependencies of that function haven’t changed, rather than recalculating the value on every render.  useMemo stands out as a powerful tool for optimizing performance without sacrificing code readability or maintainability. But it’s often overlooked or misunderstood by beginners.  In this comprehensive guide, we’ll discuss what useMemo is, how it works, and why it’s an essential tool for every React developer. What is useMemo? useMemo is a handy tool in React that helps make […]
31st August 2024

Release React Native 0.75

The release of React Native 0.75 marks a significant milestone with a series of impactful updates and changes aimed at improving performance, stability, and the overall developer experience. Below, we provide a comprehensive overview of the enhancements, new features, and breaking changes included in this version. For those interested in the previous version, you can review the details of React Native 0.74 by visiting the following link: Release React Native 0.74.0. Highlights 🚀 Enhancements in Yoga 3.1 and Layout Improvements React Native 0.75 includes Yoga 3.1, which brings several enhancements and new layout capabilities. One of the key highlights is the support […]
6th August 2024

Axios vs. Fetch API: Selecting the Right Tool for HTTP Requests

Axios vs. Fetch API know the key difference : In the field of software development, the ability to seamlessly interact with remote servers and exchange data over the web is very important. Whether it’s fetching data from an API, performing CRUD operations, or executing any other network-related task, the significance of making HTTP requests cannot be overstated. Two widely used JavaScript libraries, Fetch and Axios, have become top picks for developers seeking to handle HTTP requests. Axios and Fetch to see how they can be used to perform different tasks. Hopefully, by the end of the article, you’ll have a […]
6th July 2024

Difference between JavaScript and TypeScript

JavaScript JavaScript is the most popular programming language of HTML and the Web. JavaScript is an object-based scripting language which is lightweight and cross-platform. It is used to create client-side dynamic pages. The programs in JavaScript language are called scripts. The scripts are written in HTML pages and executed automatically as the page loads. It is provided and executed as plain text and does not need special preparation or compilation to run. History of JavaScript Netscape Communications Corporation programmer Brendan Each developed JavaScript. It was introduced in September 1995, which was initially called Mocha. However, after gaining popularity as the […]
6th May 2024

UseRecoil for state management

useRecoil – If you’re a React developer, you’ve probably used a library for managing state in your React applications. And you’ve likely heard of Redux “the state management” library for React.  For a long time, Redux was the only reliable and most widely-adopted solution for state management in React applications. And Redux has proven its use cases in big applications.  But the main problem that developers often face with Redux was the overall developer experience. In early versions of Redux, you had to manually set up your global data store and manually connect each component to consume it and update […]