Oct 12Optimizing Re-render in React ContextReact Context is a very cool feature in React that provides a way to pass data through the component tree without having to pass props manually at every level. It becomes especially useful when we have deeply nested components that need access to certain global state. …React6 min readReact6 min read
Jun 19Optimizing Token Refreshing: Preventing Duplicate API Requests with AxiosIn the realm of modern application development, secure authentication and authorization mechanisms are crucial for protecting user data and ensuring seamless user experiences. One such authentication method gaining popularity is JWT (JSON Web Tokens) token-based authentication. When implementing token-based authentication in application development, the access token assumes a vital role…React4 min readReact4 min read
Apr 26React Query and AsyncStorage: How to Persist Data in React Native AppsReact Query is a state-management library that helps with fetching, caching, synchronizing, and updating the server state in our React/React-Native application. It provides a simple way to cache and manage data in a centralized location. …React Query4 min readReact Query4 min read
Feb 6Axios Interceptors: Understanding and Using Them in Your ApplicationsAxios is a popular JavaScript library used for making HTTP requests. One of its unique features is the use of interceptors, which allow developers to perform specific actions before or after sending a request. …React3 min readReact3 min read
Nov 11, 2022Top 10 VS Code Extension to Boost ProductivityVS Code is one of the most popular open-source code editors in the world today. It is maintained by Microsoft and has all the tools needed to start software development without all the hassles of an IDE (Integrated Development Environment). …Vscode6 min readVscode6 min read
Nov 14, 202110 CSS Tricks to Spark your Web PageCSS is a wonderful tool for web developers to take their amazing code and add the much-needed special sauce that will impress users. …CSS5 min readCSS5 min read
Nov 3, 2021How to deploy React with Django in one server on HerokuReact is a JavaScript library created by Facebook. It is a tool for building a UI (User Interface) component. It is widely used for making SPA(Single Page Application), and it has a large developer community. Django is a Python-based web framework that encourages rapid development and clean, pragmatic design. Due…React4 min readReact4 min read