development, javascript, reactJune 13, 2017By adminASYNCHRONOUS JAVASCRIPT WITH ASYNC/AWAITPromises are great but the its nested syntax can get easily complex and hard to follow. With ES2017 async and await keywords for writing asynchronous code makes it more readable and easier to follow than equivalent code based on long promise chains or deeply nested callbacks.
development, javascript, reactApril 13, 2018By adminREACT CONTEXT APIThe context API will finally become a first-class citizen with the release of React 16.3. Facebook has announced that they are going to release a stable yet revamped version of the context API.
development, reactNovember 09, 2019By adminREACT CONCURRENT MODERegardless of all the optimizations we do in in React apps, rendering process so far has been a blocking and cannot be interrupted. With the introduction of new experimental React Concurrent Mode, rendering becomes interruptible.
development, javascript, react, material-uiMarch 16, 2020By adminReact Component Library with Material UIUsing Material UI which supports Styled Components is an excellent combination of libraries to start building a design system of your own
development, javascript, reactApril 30, 2020By adminReact Re-rendering ComponentsReact is known for providing a fast user experience by only updating the parts of the UI that have changed. In this article, we discuss how we can optimise the render performance by understanding how React decides to re-render
development, javascript, typesript, reactOctober 16, 2021By adminShould we declare React functional components with a const or a function?If you have been writing React functional components for a while now, you may have encountered two ways of declaring a component - an arrow function or a function declaration.
development, javascript, react, ssrOctober 22, 2021By adminServer Side Rendering with Suspense in React 18React 18 will include architectural improvements to React server-side rendering (SSR) performance.
development, javascript, reactOctober 31, 2021By adminThings to avoid when using React HooksIn this article we discuss about a few things to avoid when writing React Hooks and forming good habits through understanding
development, javascript, reactNovember 06, 2021By adminUnderstanding cloneElement, isValidElement and Render PropsReact provides several APIs for transforming elements: cloneElement, isValidElement.