Kishan Kumarwww.0xkumar.com·Sep 14, 2023Building a Custom Authentication Flow in Next.js 13 from ScratchThis article is a follow-up to my previous article, where I discussed the basics of authentication. I try to simplify the login and sign-up process. You can refer to that article here: https://www.0xkumar.com/how-authentication-works-a-step-by-step-e...Discuss·10 likes·32 readsNext.js
Prism SuwalforOutside Studiooutside-studio.hashnode.dev·Sep 6, 2023Mastering NODE.JS Design PatternsNode.js has grown in popularity as a tool for building scalable and efficient web applications. With its event-driven, non-blocking I/O model, Node.js allows for high-performance, real-time applications. However, as Node.js applications become more c...Discuss·1 like·119 readsdesign patterns
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Sep 4, 2023Building a Logging Middleware For A Go ServerIn this article, we are going to build a Logging middleware for a Go server built with the package net/http from the standard library. And using the new slog library added to Go 1.21 to create the logging feature. This article is for people who are s...Discuss·114 readslogging
Prasoon Abhinawblog.pabhinaw.dev·Aug 29, 2023Mastering Asp.Net Core: Unraveling the Concepts of Attributes - FiltersWhat are Filters? Filters in ASP.NET Core are another application of attributes. Filters are used to add pre-action or post-action behavior to controller actions, providing a way to inject cross-cutting concerns into the request/response pipeline. Th...DiscussC#
Jedidiah Amaraegbuamjedidiah.hashnode.dev·Aug 26, 2023A Beginner's Guide to Choosing Between redux-saga and redux-promise-middleware in ReduxWhen building web applications, dealing with tasks that take time is a common challenge. Redux, a powerful state management library, offers two popular solutions for managing these tasks: redux-saga and redux-promise-middleware. In this beginner-frie...DiscussRedux
Anjanesh LekshminarayananProanjanesh.dev·Aug 25, 2023Setting the user.request object to an Azure AD userI am using Azure Active Directory for sign-in in my Django application. There is an entire tutorial on how to set this up at Microsoft's website - https://learn.microsoft.com/en-us/training/modules/msid-django-web-app-sign-in/ Now that we can sign-in...DiscussDjango
Prasoon Abhinawblog.pabhinaw.dev·Aug 21, 2023Mastering Asp.Net Core: Unraveling the Concepts of MiddlewareWhat is ASP.Net core Middleware? It is a component or piece of code executes in the request/response pipeline which decides whether to pass the request to the next component in the pipeline or not. Middleware does some kind of work before deciding to...Discussasp.net core
Rahul Singhrahulsdotnet.hashnode.dev·Aug 6, 2023Global Error Handling in .NET Core Web APIIn this article, we will discuss how to handle the Exception in the .Net core web API Globally. Generally, there are multiple ways to do it but today we will discuss it with Middleware. First of all, we will discuss what is Middleware. Middleware is ...Discuss·172 readsasp.net core
miroz devkotarevengemiroz.hashnode.dev·Jul 28, 2023The Cursed Code Quest: A Dev's Journey to Anime RedemptionOnce upon a time, in a quaint little village of developers, lived a humble farmer developer named John. He was content with his daily chores of cultivating code and tending to the bugs in his digital crops. John was known for his simplicity and pure-...Discuss·2 likes·29 readsReact
Rakesh Guptarakeshgk.hashnode.dev·Jul 2, 2023Uncovering the magic of middleware!🪄💪Welcome to our blog on Express.js middleware! In this guide, we'll explore the concept of middleware, how it works, and its significance in developing web applications using JavaScript and Express.js. Middleware plays a crucial role in enhancing the ...DiscussMiddleware