James 'Dante' Midzidantedecodes.hashnode.dev·Nov 24, 2023File-Based vs. Directory-Based Routing: Understanding the DifferenceI don't know who did it, and why everyone is suddenly confused by this. What you are calling file-based routing is not what you claim. I will gladly explain. I am going to use Next.js as an example: File Based This is file-based routing: src/ └── p...Discussfile-based
Zahid Rahmanprogrammer47.hashnode.dev·Nov 21, 2023Next.js vs. React.js: Why Next.js Might Be Your Next Best ChoiceHey there, fellow developers! In the fast-paced world of web development, choosing the right tools can be a game-changer. We all know and love React.js, but have you met its cool cousin, Next.js? In this blog post, we're diving into why Next.js might...Discuss·34 readspowerofnextjs
Mudit Jainhackstone.hashnode.dev·Nov 18, 2023From React to Next.js: A Transition Guide for Web WizardsProblem with ReactJS Before this we need understand difference between Client Side Rendering(CSR) vs Server Side Rendering(SSR), below is pretty nice video explains the same. 💡 In nutshell, CSR(Client Side Rendering) shows an empty page before loa...Discuss·6 likesNext.js
Mads Akselsenmadsakselsen.hashnode.dev·Nov 11, 2023Linux: Navigating the NetworkIntroduction to Network Interfaces Network interfaces refers to the point of interconnection between two systems. In linux, these can be hardware or software entities. wlan0 is the name of the wireless interface which is piece of hardware typically ...DiscussLinux
Amitesh Vermaamiteshverma.hashnode.dev·Nov 8, 2023Demystifying React Router DOM: A Step-by-Step TutorialIn this blog, we will explore React Router, a popular third-party library in the React ecosystem, and discover how to harness its power to manage routing and navigation in single-page applications. By the end of this guide, you'll be able to create e...Discuss·12 likes·36 readsReact
Emmanuel Andemmannyandem.hashnode.dev·Nov 1, 2023How to Secure Routes in a React ApplicationAll react applications have routes. Sometimes, you preferably want some of those routes to only be accessible by a certain class of persons. These routes are known as protected routes and by the end of this article, you will learn how to build one to...Discuss·1 like·53 readsReact
Mahira Technology Private LimitedPromahiratechnology.hashnode.dev·Oct 20, 2023How to Create Host-Based Routing on Application Load Balancer in AWSOverView :- #Application Load Balancer (ALB) is a powerful tool in AWS that allows you to distribute incoming traffic to multiple targets, such as EC2 instances or containers. One of the key features of ALB is the ability to perform host-based routin...DiscussAWS
Nguyen Duc Chinhblog.nguyenducchinh.com·Oct 16, 2023[Networking] How Longest prefix matching effect routingWhen will two routes considered duplicated? Route duplication is a situation where two or more routes to the same destination exist in a routing table. This can happen for several reasons, such as misconfiguration, or the use of overlapping prefixes ...DiscussNetworkingnetworking
Saifur Rahman Mahinsaifur-rahman39.hashnode.dev·Oct 9, 2023Routing in Express JSRouting in Express JS In Express.js, a router is a middleware that helps you organize your application's routes and handlers into separate modules or files. This is particularly useful as your application grows, as it allows you to keep your codebase...DiscussBack-Endrouting
Bartosz Szłapakbarcioch.pro·Oct 6, 2023Understanding Data Passing in Angular Using Router and Component Binding (ComponentInputBinding)In this article, I'll show how to extract parameters and data from Angular routes using the component input binding feature. Setup If unsure how to set up Angular with Jest please refer to the article: https://barcioch.pro/angular-with-jest-setup. Co...Discuss·29 readsAngular