Category Archive for "React.js"

What is Pair Programming?

Two Minds, One Goal: The Power of Pair Programming Pair programming is an agile software development technique in which two developers work together on the same computer to write code. One developer, called the driver, is responsible for typing the

Read More

New Features in Next.js 13

Next.js 13 has landed in a somewhat confusing way. Many remarkable things have been added; however, a good part is still Beta. Nevertheless, the Beta features give us important signals on how the future of Next.js will be shaped, so

Read More

What’s new in TypeScript 4.9

If you’re not familiar with TypeScript, it’s a language that builds on JavaScript by adding types and type-checking. Types can describe things like the shapes of our objects, how functions can be called, and whether a property can be null

Read More

What’s new in Next.js 13

As it was announced at Next.js Conf, Next.js 13 lays the foundations to be dynamic without limits: app/ Directory (beta): Easier, faster, less client JS. Layouts React Server Components Streaming Turbopack (alpha): Up to 700x faster Rust-based Webpack replacement. New next/image (stable): Faster with native browser

Read More

How To Speed Up Data-Heavy React Components

Performance is very critical when building data-heavy applications. Every state change renders components. Managing states and rendering updates poorly may lead to slow applications and a bad user experience. Simple Technique To Boost Performance Every time state is updated, the

Read More

Creating a Progressive Web Application using Next JS

In this article, you will learn about the progressive web app, and why PWA is gaining popularity, and also you can create a simple PWA app using NextJs. Overview Progressive Web App Project setup with NextJs PWA implementation Progressive Web

Read More

What’s new in Next.Js

This RFC outlines the biggest update to Next.js since it was introduced in 2016: Nested Layouts: Build complex applications with nested routes. Designed for Server Components: Optimized for subtree navigation. Improved Data Fetching: Fetch in layouts while avoiding waterfalls. Using

Read More

The most useful Frontend coding tips and Database concepts

Frontend development is very important these days. There are a lot of tasks that a frontend developer has to do on a daily basis. As front-end developers, we write a lot of HTML, CSS, and JavaScript code all the time.

Read More

What is new in React 18

React 17 was focused on improving the fundamentals but there are few important things that got added in React 18. The React Team revealed new features that would be coming to React in React 18 and in this blog, we

Read More

Amazing new features in React Router v6

We love React!! We have been using the latest stuff from React in our latest project and found a lot of important and cool differences from the previous versions.   The following APIs will not only help you increase your

Read More