Namaste React course notes provide concise, hands-on insights into React development. Covering key concepts, components, and best practices, it's a valuable resource for mastering React.js efficiently.
- What is
Emmet? - Difference between a
Library and Framework? - What is
CDN? Why do weuseit? - Why is
React known as React? - What is
crossorigin in script tag? - What is difference between
React and ReactDOM? - What is difference between
react.development.jsandreact.production.jsfiles via CDN? - What is
async and defer?
- What is
NPM? - What is
Parcel/Webpack? Whydo we need it? - What is
.parcel-cache - What is
npx? - What is
differencebetweendependenciesvsdevDependencies - What is
Tree Shaking? - What is
Hot Module Replacement? - List down your
favorite 5 superpowers of Parcelanddescribe any 3of them in your own words. - What is
.gitignore? What shouldwe addandnot addinto it? - What is the
differencebetweenpackage.jsonandpackage-lock.json - Why should I not modify
package-lock.json? - What is
node_modules? Is it agood idea to push that on git? - What is the
distfolder? - What is
browserlists - Read about
dif bundlers:vite,webpack,parcel - Read about:
^-caretand~-tilde - Read about
Script types in html(MDN Docs)
JSXReact.createElementvsJSXBenefits of JSXBehind the Scenes of JSXBabel&parcelrole in JSXComponentsFunctional ComponentsComposing Components
- Is
JSXmandatory for React? - Is
ES6mandatory for React? {TitleComponent}vs{<TitleComponent/>}vs{<TitleComponent></TitleComponent>}inJSX.- How can I write
commentsin JSX? - What is
<React.Fragment></React.Fragment>and<></>? - What is
Reconciliationin React? - What is
React Fiber? - Why do we need
keysin React? - Can we use
index as keysin React? - What is
props in React? Ways to. - What is
Config Driven UI?
- What is the
differencebetweenNamed export,Default export, and* as export? - What is the
importanceofconfig.jsfile? - What are
React Hooks? - Why do we need
useState Hook?
- What is
Microservice? - What is
Monolith architecture? - What is the
differencebetween `Monolith and Microservice? - Why do we need a
useEffect Hook? - What is
Optional Chaining? - What is
Shimmer UI? - What is the
differencebetweenJS expression and JS statement? - What is
Conditional Rendering? explain with a code example. - What is
CORS? - What is
async and await? - What is the use of
const json = await data.json(); ingetRestaurants()?
- What are various ways to
add imagesinto our App? Explain withcode examples. - What would happen if we do
console.log(useState())? - How will
useEffectbehave if wedon't addadependency array? - What is
SPA? - What is the
differencebetweenClient Side RoutingandServer Side Routing?
- How do you create
Nested Routes react-router-domconfiguration? - Read about
createHashRouter,createMemoryRouterfrom React Router docs. - What is the
order of life cycle method callsinClass Based Components? - Why do we use
componentDidMount? - Why do we use
componentWillUnmount? Show withexample. - (Research) Why do we use
super(props)inconstructor? - (Research) Why
can't we havethecallback functionofuseEffect async?
- When and why do we need
lazy()? - What is
suspense? - Why we got this
error: A component was suspended while responding tosynchronous input. This will cause theUIto be replaced with aloading indicator. Tofix this,updates that suspendshould be wrapped withstart transition? How doessuspense fixthis error? Advantages and Disadvantagesof using thiscode splitting pattern?- When
do we and why do we need suspense?
- Explore all the
ways of writing css. - How do we
configure tailwind? - In
tailwind.config.js, what does all the keys mean (content, theme, extend, plugins)? - Why do we have
.postcssrc file?
- What is
prop drilling? - What is
lifting the state up? - What is
Context ProviderandContext Consumer? - If you
don’t pass a value to the provider does it take the default value?
useContextvsRedux.- Advantage of using
Redux Toolkit over Redux. - Explain
Dispatcher. - Explain
Reducer. - Explain
slice. - Explain
selector. - Explain
createSliceand theconfiguration it takes.
- What are different types for
testing? - What is
Enzyme? EnzymevsReact Testing Library- What is
Jestand why do weuse it?