FEATURED

Lazy Loading Components in React
By me  /  February 9, 2022

LATEST

Preventing XSS Attacks: Best Practices and Tips

Cross-Site Scripting (XSS) attacks have been a persistent threat to web applications for years, and their prevention is crucial for […]

July 3, 2024

Articles

10 Essential Clean Code Principles With TS Examples

Clean code is the foundation of efficient, maintainable, and scalable software. It is not just about making code work, but […]

May 18, 2024

Articles

Efficiently Removing Duplicates from an Array of Objects in JavaScript

Dealing with arrays of objects is a common task in programming. Sometimes, you encounter situations where you need to remove […]

September 25, 2023

Tutorials

Different Testing Methods in Front-End Development

As a front-end developer, it is important to ensure that the code you write is of high quality and that […]

May 1, 2023

Articles

Deep Copying Objects in JavaScript

When working with objects in JavaScript, it’s important to understand the difference between a shallow copy and a deep copy. […]

December 17, 2022

Tutorials

React Container Components

There are different patterns for creating React apps. The Container Component pattern means separating data fetching and presentational parts of […]

July 19, 2022

Tutorials

React v18 New Features Overview And Examples

One of The main purposes of The React team has always been improving the performance of react applications and providing […]

May 16, 2022

Articles - Tutorials

Lazy Loading Components in React

One of important performance optimization solutions is Lazy Loading. and it means instead of loading all resources on load we […]

February 9, 2022

Articles - Tutorials

Efficient Responsive Image Loading

Load time and responsive design usually impact user experience significantly, loading images with different sizes based on viewport width is […]

January 25, 2022

Tutorials

How to create a count down timer in react

One of the relatively common things that we might need in applications are timers like sale count down timers or […]

July 18, 2021

News - Tutorials