just9krish.hashnode.dev7 Tools that make you Code Faster | Using VS CodeVisual Studio Code is a popular code editor that provides developers with an exceptional experience. It has numerous built-in features and extensions that can help you write code more efficiently. However, with the vast amount of extensions/plugins a...Feb 27, 2023·4 min read
just9krish.hashnode.devBuilding a Scalable Shopping Cart System with React UserReducer and ContextAPIShopping carts are a common feature in e-commerce websites, and implementing them can be a challenging task for beginner developers. However, with the help of React's useReducer and ContextAPI, it becomes a lot easier to create a reusable and efficie...Feb 6, 2023·6 min read
just9krish.hashnode.devEffortlessly Master React State Management with the useReducer HookAs a React developer, the managing state can be a daunting task - but not any longer! With the useReducer Hook, effortlessly master React state management in no time. Going beyond traditional setState methods, the useReducer Hook offers a dynamic and...Jan 16, 2023·4 min read
just9krish.hashnode.devuseContext is the coolest react context featureIn React, context is one of the most useful and frequently used functions. In fact, we use it to pass key-value pairs from one component to another via props or states. The context can be used for sharing information between components in different ...Dec 20, 2022·2 min read
just9krish.hashnode.devFetching data from API with loading state in ReactIn React we can send network requests to the server and load new information whenever it’s needed. For example, we can use a network request to: Submit an order Load user information Receive the latest information from the server .....etc. There ar...Nov 13, 2022·2 min read