adityaraj-dev.hashnode.devCSR vs SSR vs SSG vs ISRThe rendering of any website can be of different ways like Client side rendering , Server side rendering, Static site generation, Incremental site regeneration. Here are the details explanation of each types of rendering in simple terms. CSR - Clien...Oct 4, 2025·2 min read
adityaraj-dev.hashnode.devNext.js Routing Deep Dive — Groups, Dynamics & Catch-AllsNext.js uses file based routing it means if your folder structure inside /app folder is like as /app/user then in the url let say http://localhost:3000/user render the content of the /user route. And also at http://localhost:3000/ at this route it se...Oct 2, 2025·2 min read
adityaraj-dev.hashnode.devWhy Use Build Tools in React? What Do Vite and CRA Do?When writing vanilla JS or C++ we don’t need any build tools or bundlers because browser (for JS ) and compilers (for C++) directly understand and execute the code. We could write React code without using Vite, CRA or similar tools, but it would req...May 4, 2025·1 min read