SQL Queries in React Components??? What!Vercel has recently released Next 14, introducing a feature that allows you to create server-side functions without the need to write dedicated API endpoints. These functions are exclusively kept on the server and are not included in the client bundl...Oct 31, 2023·4 min read
Recoil - A better state management tool???We have discussed how to manage the global state in a React application with Context API We also saw the disadvantages of that, every time the whole app re-renders, when there is some state change in the context. We also discussed the behavior we wan...Jul 24, 2023·3 min read
State Management with Context APIIs context API a better solution for global state management?Jul 22, 2023·4 min read
Containers???What are containers and how they can solve the issues in deployment.Jul 19, 2023·3 min read
Are you using Dependency array correctly?By the way, what the heck is a dependency array? If you had built any website using React you will come up with this feature. Nowadays many of us are using functional components, to manage the state in these components, we use hooks. If we use the ho...Jul 9, 2023·3 min read
Why Next jsMany of us know that React is the most used library by developers to build web applications. It's because of its easily maintainable folder structure and its focus on what to show on the UI(it is view based) with the help of its friend Virtual DOM. A...Jun 21, 2023·3 min read