Blogs

SOLID Principles in React: The Key to Writing Maintainable Components
solid
webdev
Sep 28, 2024 · 5 min read

SOLID Principles in React: The Key to Writing Maintainable Components

As React applications grow, things can get messy fast—bloated components, hard-to-maintain code, and...

Go to blog page
Next.js Caching: Turbocharging Your App with Efficient Data Fetching
javascript
nextjs
Sep 16, 2024 · 3 min read

Next.js Caching: Turbocharging Your App with Efficient Data Fetching

Caching in Next.js isn’t just about saving time—it’s about reducing redundant network requests,...

Go to blog page
Everything You need to know about React 19
javascript
react
May 5, 2024 · 9 min read

Everything You need to know about React 19

React 19 has been released with a series of new and exciting changes that we will cover in this post....

Go to blog page
StyleX vs Tailwind?!
webdev
frontend
Dec 18, 2023 · 3 min read

StyleX vs Tailwind?!

Today I'm going to talk about Stylex and the difference between this library and freamworks like...

Go to blog page
Simplifying Data Management in React with React Query
react
reactquery
Apr 22, 2023 · 10 min read

Simplifying Data Management in React with React Query

React Query is a popular JavaScript library that is widely used in React applications. The library...

Go to blog page
Redux toolkit, easier than Redux!
javascript
webdev
Aug 3, 2022 · 11 min read

Redux toolkit, easier than Redux!

We have already explored Redux in the "Redux is easier than you think!" article and we learned have...

Go to blog page
Performance optimization tips for React projects
javascript
react
Jul 7, 2022 · 11 min read

Performance optimization tips for React projects

In this article, we are going to talk about tips and techniques for making our react projects'...

Go to blog page
Request easily, with Axios
axios
javascript
Mar 27, 2022 · 8 min read

Request easily, with Axios

Are you tired of catching errors with .catch methods? Are you tired of looooong API URLs and...

Go to blog page
how does javascript Promise work under the hood?
javascript
webdev
Mar 27, 2022 · 10 min read

how does javascript Promise work under the hood?

hello friends😀 I believe when we want to learn and conquer a programming language, we need to know...

Go to blog page
oop in javascript! part2:4 pillars of oop
javascript
oop
Mar 27, 2022 · 6 min read

oop in javascript! part2:4 pillars of oop

Hi everyone 😃 In the previous article, we started a journey to the oop world by learning prototypes...

Go to blog page
oop in javascript! part1: prototype
javascript
oop
Mar 27, 2022 · 9 min read

oop in javascript! part1: prototype

Hello friends😀 When I was learning Javascript, I’ve always wondered when I define a string or...

Go to blog page
Understanding hoisting,scopes, and closures in JavaScript
javascript
hoisting
Mar 27, 2022 · 8 min read

Understanding hoisting,scopes, and closures in JavaScript

hi everyone😀 there are a bunch of important concepts in javaScript that you should know as a...

Go to blog page
Redux is easier than you think!
javascript
webdev
Mar 27, 2022 · 6 min read

Redux is easier than you think!

We use props to access and transfer the data between components , There could be a situation where we...

Go to blog page
React Hooks
react
javascript
Mar 27, 2022 · 5 min read

React Hooks

Before version 16.8 react, we had to write a class component if we wanted to use most features of...

Go to blog page
learn React Lifecycle once and for all
react
javascript
Mar 27, 2022 · 5 min read

learn React Lifecycle once and for all

In this article, we are going to understand the whole lifecycle meaning and learn all of its methods...

Go to blog page
How javaScript Asynchronous works under the hood?
javascript
webdev
Mar 27, 2022 · 2 min read

How javaScript Asynchronous works under the hood?

in this brief Article I'm going to show you how Event loop , Call stack , Callback queue and web APIs...

Go to blog page