Mayank's blog

Mayank's blog

Follow
Follow
homeAll About Mern StackSolanaBlockchainRustbadges
Series

MERN stack

Join me as I learn MERN stack and TypeScript. I will cover the basics and build a full-stack web app. Follow this series and improve your web dev skills!

Articles in this series

Basic of JavaScript for MERN Stack

May 27, 202338 min read

Importance of Javascript JavaScript is the only language that can run both on the front-end and the back-end. This means you can use the same...

Basic of JavaScript for MERN Stack

Mastering Request Body Parsing in Express.js with Body-parser Middleware

Aug 9, 20233 min read

Hello, fellow developers! 👋 In this post, I will share with you how to use body-parser, a popular middleware that helps us parse the request body in...

Mastering Request Body Parsing in Express.js with Body-parser Middleware

Solving CORS Errors in Express.js

Aug 15, 20233 min read

While developing a Todo app API and connecting it through the frontend, I encountered a CORS (Cross-Origin Resource Sharing) error. CORS is a...

Solving CORS Errors in Express.js

React Reconciliation & Virtual DOM : How It Works and Why You Should Care

Aug 17, 20234 min read

React is a popular library for building user interfaces. One of the key features of React is that it uses a virtual DOM, which is a lightweight...

React Reconciliation & Virtual DOM : How It Works and Why You Should Care

Token Authentication: An Overview of Sessions and JSON Web Tokens

Aug 19, 20233 min read

When it comes to user authentication, there are two main approaches: sessions and tokens. In this blog post, we'll take a closer look at both...

Token Authentication: An Overview of Sessions and JSON Web Tokens