Utkarshblogs.utkarshrajput.com·Oct 16, 2024Authentication: Done the Right WayPrologue Authentication—a topic that brings joy to every developer's heart! Right up there with debugging and production outages. But, jokes aside, it’s crucial to get authentication right. Why? Because while you might enjoy seeing error logs, you de...React
ian Muchesiamsodoki.hashnode.dev·Jan 27, 2024JWT in the World of Stateful Session ManagementIntroduction: Traditionally, session management with an HTTP-only cookie was the preferred method in authentication. This involved generating a random text, such as cryptographic text, and then sending it to the client, i.e., the browser, via cookies...JWT
Mustafa Dalgasft.hashnode.dev·Mar 10, 2023Protecting Private APIs and Pages in Next.js 13Next.js has always been a favorite for its simplicity and powerful features. With the release of Next.js 13, the framework introduced a new way to handle middleware, making it even easier to add protection layers to your application. In this post, I'...186 readsNext.jsNext.js