Xplorer : A Curated Marketplace Of Online Learning Cohorts and Communities - #AmplifyHashnodeFeb 27, 2021·11 min read·218
Fundamentals of System DesignEver wondered how apps like Facebook, Twitter, Zomato, Hotstar etc works behind the scene ? These apps works smoothly, even when millions of users are using concurrently. System design is one such process of defining the architecture, interfaces, an...Mar 28, 2022·3 min read·80
Understanding Execution Context, Thread, and Functions in JavascriptIn today's post, I am going to write about how javascript works. We will throw some light on terminologies like Execution context, function level execution context, function invoking, and threads. Do you know what happens behind the scene when you ...Oct 20, 2020·3 min read·183
It's my day 0 at Hashnode platformYay! It's my day 0. Today, I created my account on hashnode as I found it better than any other existing platform for developers. A little bit intro about me I am a software engineer at 91wheels.com. Apart from the day job, In my 9 pm - 6 am schedul...Oct 19, 2020·1 min read·122
Authentication in NodeJS With Express and Mongo - CodeLab #1I am starting a CodeLab Series in which I will building something cool and sharing with the community. Today, We are going to implement Authentication API in Node using JWT, express, and MongoDB. I advise you to follow the table of content and don't...Dec 21, 2019·15 min read·47
How CORS (Cross-Origin Resource Sharing) Works?If you are a web developer, you must have seen the 'CORS' error appearing often on your screen when you try to call the API. But, Why does it happen? Well, For security reasons, browsers restrict cross-origin HTTP requests initiated from scripts. F...Dec 17, 2019·4 min read·112
How to Pass Data From One Component to Other Component in React?Props are used for passing data between the components. We usually use it to pass data from the parent component to the child component. But what if you need to pass data from Child to Parent component? What if you need to pass data between siblings...Dec 17, 2019·4 min read·46
ES6 | A Comprehensive Guide to Learn ES2015(ES6)ES6 is a JavaScript coding standard also called as ECMASCRIPT2015 was released in 2015. It has a lot of great features which a javascript developer should must know and implement in his/her code. Today, we are going to learn about almost all the feat...Sep 21, 2019·15 min read·33