VJVineeth J Nairinvineeth-jay.hashnode.dev路Feb 10, 2025 路 4 min readIntro to JSON Web TokensComprehensive Guide to JWT (JSON Web Token) Authentication 馃搶 Table of Contents Introduction to JWT Structure of JWT How JWT Works Access Tokens vs. Refresh Tokens Implementing JWT Authentication (Node.js & Express) Securing JWT Tokens Handlin...00
VJVineeth J Nairinmodule-federation.hashnode.dev路Jan 15, 2025 路 3 min readCommonly used Custom React Hooks1. API Data Fetching Use Case: Centralize the logic for fetching data from APIs. Example: javascriptCopy codeimport { useState, useEffect } from "react"; function useFetch(url) { const [data, setData] = useState(null); const [error, setError] = ...00
VJVineeth J Nairinmodule-federation.hashnode.dev路Dec 23, 2024 路 4 min readCommon Programming Problem-Solving Techniques and Patterns in JavaScriptIn the world of programming, solving problems efficiently is a critical skill. JavaScript, being a versatile language, offers multiple ways to tackle challenges. This blog explores some common problem-solving techniques and patterns in JavaScript, eq...00
VJVineeth J Nairinmodule-federation.hashnode.dev路Dec 23, 2024 路 4 min readMicro Frontend Architecture and Module Federation: A Deep DiveIn the modern web development landscape, scalability, maintainability, and faster deployment are critical. Micro Frontend Architecture has emerged as a powerful solution to address these needs, especially for large-scale applications. This blog explo...00