© 2023 Hashnode
#babel
One question that often crosses our mind,how does react work internally,we know we can create components using jsx and render them on web but how does this happen, what makes react so fast and flexibl…
React and TypeScript are two popular technologies used in web development. React is a JavaScript library used for building user interfaces, while TypeScript is a statically-typed superset of JavaScrip…
If you are using create-react-app stop using this for production applications because you may install many inbuild dependencies and your application it causes heavy and slow applications for users. (npx create-react-app good for beginners).…
JavaScript has become a popular language for web development due to its versatility, ease of use, and flexibility. But with the increase in complexity of JavaScript applications, code maintenance and …
What is JSX? JSX stands for Javascript XML and it is a special syntax for writing HTML-like markup inside a Javascript file. Behind the scenes, the Babel compiler transforms them into React.createElement functions. So JSX is just syntactic …
React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called “components”. A starter kit is a set of pre-existing codes that y…
Coming from the product of "Polyfillia", which is a paste used by civil engineers to fill cracks and holes in an otherwise useable wall, we have a "Polyfill", which seals and fills the holes of old br…
Unlike your digital fetishes, virtual DOM (Document Object Model) is a lightweight in-memory 'representation of a DOM' tree. It is a programming interface that abstracts away the details of the actual…
Motivation Without many words, let’s jump into some examples of usual imports: import Header from '../../../components/Header'; import ThemeProvider from '../../../../theme/ThemeProvider'; import useL…
Installation npm init -y: Creates a package.json file for your project. npm i -D webpack webpack-cli: Installs Webpack and the Webpack Command Line Interface (CLI). npm install webpack-dev-server -…