Blogs

Stack | Javascript | Part-1

Sep 7, 2022

Stack | Javascript | Part-1

Introduction article to the data structure. Stack concept with practical examples applied to the Javascript language.
Queue | Javascript | Part-2

Sep 10, 2022

Queue | Javascript | Part-2

Introduction article to the data structure. Queue concept with practical examples applied to the Javascript language.
Linked List | Javascript | Part-3.1

Sep 16, 2022

Linked List | Javascript | Part-3.1

Introduction article to the data structure. Linked List concept with practical examples applied to the Javascript language.
Doubly Linked List | Javascript | Part-3.2

Sep 20, 2022

Doubly Linked List | Javascript | Part-3.2

Introduction article to the data structure. Doubly Linked List concept with practical examples applied to the Javascript language.
Circular Linked Lists | Javascript | Part-3.3

Sep 23, 2022

Circular Linked Lists | Javascript | Part-3.3

Introduction article to the data structure. Circular Linked List concept with practical examples applied to the Javascript language.
Set | Javascript | Part-4

Sep 26, 2022

Set | Javascript | Part-4

Introduction article to the data structure. Set (Object) concept with practical examples applied to the Javascript language.
Hash Table | Javascript | Part-5

Sep 30, 2022

Hash Table | Javascript | Part-5

Introduction article to the data structure. Hash Table concept with practical examples applied to the Javascript language.
Tree | Javascript | Part-6.1

Oct 3, 2022

Tree | Javascript | Part-6.1

Introduction article to the data structure. Tree concept with practical examples applied to the Javascript language.
Binary Tree | Javascript | Part-6.2

Oct 10, 2022

Binary Tree | Javascript | Part-6.2

Introduction article to the data structure. Binary Tree concept with practical examples applied to the Javascript language.
Heap | Javascript | Part-6.3

Oct 14, 2022

Heap | Javascript | Part-6.3

Introduction article to the data structure. Heap Tree concept with practical examples applied to the Javascript language.
Trie Tree | Javascript | Part-6.4

Oct 17, 2022

Trie Tree | Javascript | Part-6.4

Introduction article to the data structure. Trie Tree concept with practical examples applied to the Javascript language.
AVL Tree | Javascript | Part-6.5

Oct 21, 2022

AVL Tree | Javascript | Part-6.5

Introduction article to the data structure. AVL Tree concept with practical examples applied to the Javascript language.
Git | Copy commit from one branch to another without using git merge

Nov 14, 2022

Git | Copy commit from one branch to another without using git merge

The article explains how to copy a specific commit from one branch to another in Git without using git merge, by using git cherry-pick
Cross-Origin Resource Sharing (CORS)

Nov 19, 2024

Cross-Origin Resource Sharing (CORS)

The article provides an overview of Cross-Origin Resource Sharing (CORS), explaining its purpose and how it allows or restricts web applications from making requests to resources on different domains.
Rebootify — A 30x Lightweight Alternative to Nodemon!

Mar 19, 2025

Rebootify — A 30x Lightweight Alternative to Nodemon!

Rebootify is a CLI tool designed to automatically restart Node.js applications when file changes are detected.
Understanding Rate Limiting: Concepts and Algorithms

April 26, 2025

Understanding Rate Limiting: Concepts and Algorithms

Delves into rate limiting for web applications and APIs, explaining key concepts and various algorithms for effective traffic management.
Different Ways to Clean Up: Garbage Collection Algorithms

May 4, 2025

Different Ways to Clean Up: Garbage Collection Algorithms

Explores diverse garbage collection algorithms, detailing how they manage memory in programming languages and their performance implications.
Hidden Performance Pitfall in Node.js: Reading from process.env Inside Loops

May 10, 2025

Hidden Performance Pitfall in Node.js: Reading from process.env Inside Loops

Uncovers a performance bottleneck in Node.js related to process.env access within loops, providing solutions for faster applications.
Mastering MongoDB Indexing: Build the Perfect Index with the ESR Rule

May 12, 2025

Mastering MongoDB Indexing: Build the Perfect Index with the ESR Rule

Optimizing MongoDB queries by mastering the ESR (Equality, Sort, Range) rule for efficient index creation and improved performance.
The Silent Threat in Your npm install: A Wake-Up Call for Node.js Developers

May 16, 2025

The Silent Threat in Your npm install: A Wake-Up Call for Node.js Developers

Exposes hidden security risks in npm install and offers crucial practices to secure Node.js projects from malicious dependencies.
Kubernetes Pod YAML Explained: A Practical Guide Using Node.js & AWS EKS

May 23, 2025

Kubernetes Pod YAML Explained: A Practical Guide Using Node.js & AWS EKS

A practical guide to crafting Kubernetes Pod YAML for Node.js apps on AWS EKS, breaking down essential configurations.