UPUmang Pinchainumangpincha.hashnode.dev·1d ago · 4 min readPart 4 : JSX ,Components & PropsFirst lets kill the common misconception JSX is HTML inside Javascript. Its true but not fully. In reality it means JSX is syntactic sugar for React.createElement() calls. When you write <h1> Hell00
UPUmang Pinchainumangpincha.hashnode.dev·1d ago · 3 min readPart 3 : Babel vs OXC: Understanding the Future of JavaScript Tooling We mostly focus on frameworks like React , Next.js etc but the things working behind the scene have immensively changed , evolved. The industry is gradually shfting from Javascript tooling system Babe00
UPUmang Pinchainumangpincha.hashnode.dev·Jul 11 · 4 min readPart 2 : What is NPM and Vite? A Deep Dive into Modern React DevelopmentNode Package Manager (NPM) NPM is like the Play Store or App Store on your mobile phone. Just as you download apps from there, you download JavaScript packages from NPM. For example, if you want to us00
UPUmang Pinchainumangpincha.hashnode.dev·Jul 11 · 3 min read(Part 1) : React Behind The Scenes: Virtual DOM, Reconciliation, Render Phase, Commit Phase & Fiber Explained. Virtual DOM Virtual DOM is a copy of a Real DOM , it helps us to manipulate the real DOM via ReactDOM, (JFYI , Real DOM means the things which you see when you open a website) , VDOM is provided by fr00
UPUmang Pinchainumangpincha.hashnode.dev·Jul 5 · 3 min readReact Behind the Scene (React 0)What is React ? It is a free open source JS library which helps you to write "Single Page Applications". Clear Some Basics first How do you create element in JS let div = document.createElement("div")00