- What is Emmet?
- Difference between a Library and Framework?
- CDN - Content delivery network
- CDN Caching
- Difference b/w cloud computing VS Edge computing?
- What is crossorigin in script tag?
- Difference between React and ReactDOM
- What is difference between react.development.js and react.production.js files via CDN?
- What is async and defer?
- Create a React element, create a root element, and render the React element onto a web page using React and ReactDOM.
- What is NPM?
- What is Parcel/Webpack? Why do we need it?
- What is .parcel-cache?
- What is npx?
- What is difference between dependencies vs devDependencies?
- What is transitive dependencies?
- What is tree shaking?
- What is Hot Module Replacement?
- What is a WebSocket?
- What is .gitignore file?
- What is the difference between "package.json" and "package-lock.json"
- Why should I not modify package-lock.json?
- What is node_modules? Is it a good idea to push it on GitHub?
- What is the "dist" folder?
- What is "browserlists" inside the package.json file?
- Compare among three web bundlers Vite, Webpack, and Parcel?
- Difference b/w
^
caret and~
tilde sign inside the package.json file?
- What is JSX?
- React.createElement vs JSX
- Write some benefits of JSX
- Behind the Scenes of JSX
- The essential role of Babel and parcel in JSX?
- Can you explain component and its type in ReactJS?
- Functional component in ReactJS
- Explain the component composition in ReactJS
- Explain about cross-site scripting
- Can you explain type="module" attribute inside script tag?
- What are the differences between
{TitleComponent}
VS{<TitleComponent/>}
and{<TitleComponent></TitleComponent>}
in JSX?
- Is JSX mandatory for React?
- Is ES6(2015) mandatory for React?
- What is
<React.Fragment></React.Fragment>
and<></>
in React? - What is Virtual DOM?
- What is Reconciliation in React?
- What is React Fiber?
- Why and when do we need keys in React?
- Can we use index as keys in React?
- What is props in React?
- What is a Config Driven UI?