Posts

Showing posts from March, 2024

CSR SSR SSG ISR

 CSR (Client Side Rendering) In this type, the source code is rendered in the client side. All the code is generated and built in the client side. SSR(Server Side Rendering) In this type, the source code is rendered in the server side. All the code is generated in the server and whatever request the client makes to the server, the request is fulfilled and is sent to the client. It reduces the load in client's side.  SSG(Static Side Generation) In this type, the source code that is build is generated in build time. The generated code is passed to the server and the server sends the code to the client as per requests. The whole code is already generated while in the build. ISR (Incremental Static Regeneration) In this type, the source code is generated in the build time and also updated after certain time. The time to regenerate the build can the set and the code is regenerated every interval. The code generated in the build is sent to the server and is sent to client. The code ...