RVRamesh Vishnoiinramesh90904.hashnode.dev·Sep 8, 2022 · 4 min readMicro-frontend Pratical guide - Part 2In previous post, we discussed what is micro-frontend architecture and its pros and cons. In this post, we'll go through the steps required in setting up the project - how to initialize the main container app and a sample module using React. We'll a...00
RVRamesh Vishnoiinramesh90904.hashnode.dev·Sep 8, 2022 · 2 min readMicro-frontend Pratical guide - Part 1What is Micro-frontend? It is an advanced FE concept used when the codebase is very big and large number of developers actively working on it. Micro-frontend architecture become famous after the success of microservices architecture where the backend...00
RVRamesh Vishnoiinramesh90904.hashnode.dev·Sep 7, 2022 · 3 min readRight Usage of Keys in ReactUsage Keys are used by React internal algorithm (Reconciliation or React’s “diffing” algorithm) to determine what changes it needs to apply to UI in while updating UI. Before React, Browsers were repainting the entire UI for every change, even if it'...00
RVRamesh Vishnoiinramesh90904.hashnode.dev·Sep 7, 2022 · 2 min readAdvanced React Native Interview Questions1. How to build Custom Native Modules? Create module class extending ReactContextBaseJavaModule Export module name and functions annotated as @ReactMethod In MainPackage file, add newly created module into module list. Import NativeModule from reac...00