LSLokesh Singhinlokiislazy.hashnode.dev·Jul 7, 2024 · 7 min readWeb Performance Explained: A Simple GuideIn this article we will understand web performance, basically a lot of theory but fundamental things. Importance of web performance Before google used to rank the website based on its load time but after 2021 google started to rank sites on performa...00
LSLokesh Singhinlokiislazy.hashnode.dev·Jul 6, 2024 · 7 min readBackend communication patternsRequest-Response client sends a request Server parses the request Server processes the request (means make it understandable for the language ) Server sends a response Client parses the response and consume Where it’s being used? Web, HTTP, ...00
LSLokesh Singhinlokiislazy.hashnode.dev·Mar 15, 2024 · 1 min readWhat is cloud ?In the past, companies built their own data centers (server warehouses) to run applications. This had drawbacks: Wasted Resources: Companies bought servers with fixed capacity, leading to wasted resources if their needs were smaller. Conversely, they...00
LSLokesh Singhinlokiislazy.hashnode.dev·Jan 2, 2024 · 3 min readFile Based Routing In Next JsNext.js uses file-based routing. As we can understand from the term “file-based,” it means that the routing is based on files. In React, we usually define routes by importing the library called React Router DOM. However, Next.js provides us with defa...00
LSLokesh Singhinlokiislazy.hashnode.dev·Jul 11, 2023 · 2 min readWhat is Props -React?Props is essentially how we pass data between components and in particular from parent to child component. it is simillar like passing arguements in the functions. How to use props ? Function App(){ return <test test="Hello World" // props with the ...00