My Blogs

Here are some of my blogs

How to deploy Vite React App to GitHub Pages

You can use GitHub Pages to host your website for free. In this guide will show you how you can deploy your Vite React applications to GitHub Pages in an easy way.

How to setup path aliases in Vite React

Ever found yourself lost in a labyrinth of import statements, desperately trying to figure out the correct path to your files in a React project? If you’ve ever thought, “There has to be a better way to get rid of those pesky

Optimizing Performance with Caching in Express.js

Caching is a common technique used to improve the performance of web applications by storing data in memory so that it can be quickly accessed without the need to retrieve it from a slower data store such as a database or API. In this tutorial, we will learn how to...

6 Different ways to create file in Linux

In this tutorial, I will show you how to create a file from a Linux terminal. There are many commands like (cat, echo, touch) to create a file in the Linux operating system via command line. 1) Cat Command

How to add Rate Limit in express.js

Rate limiting is a technique used to control the amount of incoming requests to a server in order to protect it from being overwhelmed or to prevent against malicious attacks such as Brute force , DoS attacks.