MKManish Kumar Guptainheismanish.hashnode.dev·Apr 19, 2025 · 4 min readWhere the hell is a server in an express app!?If you are a go to javascript person then most probably at some point you have created a server using our oh so popular ExpressJS framework. If yes, and you have ever wondered how an ExpressJS work internally!?… Then welcome to this blog where we wil...00
MKManish Kumar Guptainheismanish.hashnode.dev·Jul 30, 2024 · 2 min readChanging Fonts in Next.jsFonts play a crucial role in web design, influencing the readability, aesthetics, and overall user experience of your application. Recently, while working on an assessment in Next.js, I faced a challenge with changing the font (I forgot how to do it ...00
MKManish Kumar Guptainheismanish.hashnode.dev·Jun 14, 2024 · 3 min readWhy NextAuth uses cookies??Introduction So we want to authenticate our user in our NextJS app, right? Then why don't we just make a request to the server the first time for authentication, get the JWT token, and then maybe store it in our local storage and keep sending the tok...00
MKManish Kumar Guptainheismanish.hashnode.dev·Jun 14, 2024 · 2 min readUnderstanding CSRF Attacks and PreventionIntroduction In this blog, we will explore CSRF (Cross-Site Request Forgery) attacks, their implications, and how to prevent them using cookies' properties. What is CSRF? 🔫 CSRF, or Cross-Site Request Forgery, is a type of malicious exploit of a web...00
MKManish Kumar Guptainheismanish.hashnode.dev·Jun 14, 2024 · 2 min readUnderstanding Cookies in Web DevelopmentIntroduction In this blog, we'll delve deeper into the types of cookies, their properties, and the importance of cookies in web development, especially in the context of authentication and security. Types of Cookies 🍪 Persistent Cookies: Stays even...00