Srishti Prasad

Srishti Prasad @srishtikprasad

About: Javascript || Node Js || Express || mongoDB || DBMS || NoSQL || C++

Location:
India
Joined:
Oct 30, 2021

Srishti Prasad
articles - 37 total

Decoding the Dynamics Between Microservices, Application Servers, Web Servers, and Clients

In modern software architecture, the interaction between microservices, app servers, web servers, and...

Learn More 5 0Dec 28 '24

A Curious Encounter: Unraveling the Roles of Microservices, API Gateways, and API Servers

It all started during one of my routine code reviews at work. I was reviewing a piece of...

Learn More 66 17Dec 28 '24

[Boost]

🔐 Top 3 Best Authentication Frameworks for 2025 🗝️🧰 ...

Learn More 0 0Dec 16 '24

Proxy Design Pattern

In my previous blogs, I explored various creational design patterns that deal with object creation...

Learn More 106 4Oct 19 '24

Prototype Design Pattern

The Prototype Design Pattern in JavaScript is a creational pattern that allows you to create new...

Learn More 7 0Oct 12 '24

Builder Design Pattern

The Builder Pattern is a creational design pattern that provides a way to construct complex objects...

Learn More 125 11Oct 7 '24

Abstract Factory Design Pattern

Abstract factory method design pattern :- basically it is a pattern inside a pattern it is a...

Learn More 8 2Oct 5 '24

Factory Design Pattern in JavaScript

The Factory Design Pattern is a creational design pattern that provides a way to create objects...

Learn More 27 0Oct 3 '24

Understanding Creational Design Patterns: Building Blocks of Object Creation

When designing software, one of the key challenges is how objects are created. If we don't structure...

Learn More 18 2Oct 2 '24

Low level design and SOLID Principles

Low-Level Design (LLD) is a critical phase in software development that bridges the gap between...

Learn More 89 2Oct 1 '24

Understanding Prototypes in JavaScript: The Backbone of Inheritance

JavaScript is a powerful language that uses prototypal inheritance, which can be a bit confusing for...

Learn More 2 0Sep 22 '24

Develop and Test AWS S3 Applications Locally with Node.js and LocalStack

AWS S3 (Simple Storage Service) A scalable, high-speed, web-based cloud storage service...

Learn More 11 0Jul 13 '24

ES Module

This blog is continuation with previous, The Module System commonJS module. In this blog post I'll be...

Learn More 14 3May 27 '24

The Module System in Javascript

In the ever-evolving landscape of JavaScript development, mastering the module system is crucial for...

Learn More 89 9May 26 '24

Simplifying Redis Installation with Docker: A Step-by-Step Guide

In the world of modern software development, efficiency and ease of deployment are paramount. Docker...

Learn More 18 2May 6 '24

Unlocking Performance: The Power of Caching with Redis

In this exploration 🚀, we'll venture beyond the surface 🌍, delving into the fundamental principles,...

Learn More 5 0May 3 '24

Error Handling with Express

INTRODUCTION Error handling in Express refers to the process of catching and managing...

Learn More 23 3May 1 '24

Pr🕐mises & Asynchronous call in JavaScript

Asynchronous call Imagine a new ATM 💰 is installed in a shopping center. There were...

Learn More 7 0Aug 9 '23

Manipulating Children dynamically in React

Learning how to add functionality dynamically to children in React enhances your ability to build...

Learn More 36 6Jun 10 '23

Data Structure in JavaScript

The focus will be on using the Object, Array, Map, and Set data structures in...

Learn More 4 0Feb 11 '23

JavaScript and Object Oriented Programming with its four pillar

The Principles of Object Oriented Programming (OOP) The four fundamental OOP principles...

Learn More 8 2Feb 3 '23

Writing efficient and reusable code in JavaScript (OOPs)

There are two paradigms that are frequently used in programming. Object-oriented programming (OOPs),...

Learn More 4 0Jan 19 '23

Scoping in JavaScript

What is scope? Scope is all about code accessibility. It determines which parts of the...

Learn More 2 0Jan 18 '23

Arrays and Objects in JavaScript

In this blog I've covered different methods to make arrays and objects in JavaScript It is possible...

Learn More 2 1Jan 15 '23

HOW DOES INTERNET WORK🤔??

This article will help you to understand 😎 the whole process of how internet works and all the terms...

Learn More 7 0Dec 6 '22

Polyfill in javaScript map(),filter(),reduce()

Who wouldn't desire cross-browser compatible web programmes that run smoothly in every online...

Learn More 30 0Sep 17 '22

Map(),Filter(),reduce() with important interview questions

Map, reduce, and filter are all array methods in JavaScript. Each one will iterate over an array and...

Learn More 136 4Sep 15 '22

Http request with Axios for beginners

What is Axios ? Axios is a very popular JavaScript library that allows you to make HTTP...

Learn More 6 1Aug 5 '22

What is so special about : useRef() react hook

What is useRef() ? useRef() is a react hook used for references in React, to store a...

Learn More 5 0Jul 14 '22

Guide to React hook- useReducer

What is useReducer Hook? useState hook is not the only hook to manage state, useReducer is...

Learn More 10 2Jul 9 '22