React Handbook
React Handbook
Preface
The React Handbook
Conclusion
1
Preface
The React Handbook follows the 80/20 rule: learn in 20% of the time the
80% of a topic.
Enjoy!
2
The React Handbook
1. Introduction to React
2. How much JavaScript do you need to know to use React?
3. Why should you learn React?
4. How to install React
5. React Components
6. Introduction to JSX
7. Using JSX to compose UI
8. The difference between JSX and HTML
9. Embedding JavaScript in JSX
10. Managing state in React
11. Component Props in React
12. Data flow in a React application
13. Handling user events in React
14. Lifecycle events in a React component
15. Where to go from here
1. Introduction to React
The goal of this handbook is to provide a starter guide to learning React.
Those topics will be the base upon which you will work on in other more
advanced React courses.
3
This book is especially oriented towards JavaScript programmers new to
React.
Its primary goal is to make it easy to reason about an interface and its state at
any point in time, by dividing the UI into a collection of components.
You will find some initial difficulties learning React, but once it "clicks", I
guarantee it's going to be one of the best experiences you will have, because
React makes many things easier than ever, and its ecosystem is filled with
great libraries and tools.
React in itself has a very small API, and you basically need to understand 4
concepts to get started:
Components
JSX
State
Props
We'll explore all of these in this book, and we'll leave the more advanced
concepts to other learning resources.
You don't have to be an expert, but I think you need a good overview of:
4
Variables
Arrow functions
Work with objects and arrays using Rest and Spread
Object and array destructuring
Template literals
Classes
Callbacks
ES Modules
If those concepts sound unfamiliar, I provided you with some links to find
out more about those subjects.
1. React is very popular. As a developer, it's quite likely that you're going to
work on a React project in the future. Perhaps an existing project, or
maybe your team will want you to work on a brand-new app based on
React.
2. A lot of tooling today is built using React at the core. Popular
frameworks and tools like Next.js, Gatsby and many others use React
under the hood.
3. As a frontend engineer, React is probably going to come up in a job
interview.
Those are all good reasons, but one of the reasons I want you to learn React is
that it's great.
5
4. How to install React
There are a few different ways to install React.
To start with, I highly recommend one approach, and that's using the
officially recommended tool called create-react-app .
You start by using npx , which is an easy way to download and execute
Node.js commands without installing them.
npx comes with npm (since version 5.2) and if you don't have npm installed
already, do it now from nodejs.org (npm is installed with Node).
If you are unsure which version of npm you have, run npm -v to check if you
need to update.
6
This is when it finished running:
7
It also added a few commands in the package.json file:
so you can immediately start the app by going into the newly created
application folder and run npm start .
8
By default, this command launches the app on your local port 3000, and it
opens your browser showing you the welcome screen:
9
Now you're ready to work on this application!
5. React Components
You just saw how to create your first React application.
This application comes with a series of files that do various things, mostly
related to configuration, but there's one file that stands out: App.js .
10
Its code is this:
function App() {
return (
<div className='App'>
<header className='App-header'>
<img src={logo} className='App-logo' alt='logo' />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className='App-link'
href='https://reactjs.org'
target='_blank'
rel='noopener noreferrer'
>
Learn React
</a>
</header>
</div>
)
}
But let's start by analyzing this first component. I'm going to simplify this
component code like this:
11
import React from 'react'
import logo from './logo.svg'
import './App.css'
function App() {
return /* something */
}
You can see a few things here. We import some things, and we export a
function called App .
The things we import in this case are a JavaScript library (the react npm
package), an SVG image, and a CSS file.
App is a function that in the original example returns something that at first
sight looks quite strange.
It looks like HTML but it has some JavaScript embedded into it.
A component can have its own state, which means it encapsulates some
variables that other components can't access unless this component exposes
this state to the rest of the application.
A component can also receive data from other components. In this case, we
talk about props.
Don't worry, we're going to look in detail at all those terms (JSX, State, and
Props) soon.
12
6. Introduction to JSX
We can't talk about React without first explaining JSX.
You met your first React component, the App component defined in the
default application built by create-react-app .
function App() {
return (
<div className='App'>
<header className='App-header'>
<img src={logo} className='App-logo' alt='logo' />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className='App-link'
href='https://reactjs.org'
target='_blank'
rel='noopener noreferrer'
>
Learn React
</a>
</header>
</div>
)
}
We previously ignored everything that was inside the return statement, and
in this section we're going to talk about it.
13
<div className='App'>
<header className='App-header'>
<img src={logo} className='App-logo' alt='logo' />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className='App-link'
href='https://reactjs.org'
target='_blank'
rel='noopener noreferrer'
>
Learn React
</a>
</header>
</div>
This looks like HTML, but it's not really HTML. It's a little different.
And it's a bit strange to have this code inside a JavaScript file. This does not
look like JavaScript at all!
Under the hood, React will process the JSX and it will transform it into
JavaScript that the browser will be able to interpret.
So we're writing JSX but, in the end, there's a translation step that makes it
digestible to a JavaScript interpreter.
React gives us this interface for one reason: it's easier to build UI
interfaces using JSX.
In the next section, we'll talk about how JSX lets you easily compose a UI,
then we'll look at the differences with "normal HTML" that you need to
know.
14
As introduced in the last section, one of the main benefits of JSX is to make it
very easy to build a UI.
A React component is usually created in its own file, because that's how we
can easily reuse it (by importing it) in other components.
But a React component can also be created in the same file of another
component if you plan to only use it in that component. There's no "rule"
here, you can do what feels best to you.
I generally use separate files when the number of lines in a file grows too
much.
To keep things simple, let's create a component in the same App.js file.
function WelcomeMessage() {
return <p>Welcome!</p>
}
See? It's a simple function that returns a line of JSX that represents a p
HTML element.
Now inside the App component JSX we can add <WelcomeMessage /> to
show this component in the user interface:
15
import React from 'react'
import logo from './logo.svg'
import './App.css'
function WelcomeMessage() {
return <p>Welcome!</p>
}
function App() {
return (
<div className='App'>
<header className='App-header'>
<img src={logo} className='App-logo' alt='logo' />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<WelcomeMessage />
<a
className='App-link'
href='https://reactjs.org'
target='_blank'
rel='noopener noreferrer'
>
Learn React
</a>
</header>
</div>
)
}
And here's the result. Can you see the "Welcome!" message on the screen?
16
We say WelcomeMessage is a child component of App, and App is its
parent component.
17
In this section, I want to introduce to you some of the most important things
you need to keep in mind when using JSX.
One of the differences might be quite obvious if you looked at the App
In HTML we use the class attribute. It's probably the most widely used
attribute, for various reasons. One of those reasons is CSS. The class
attribute allows us to style HTML elements easily, and CSS frameworks like
Tailwind put this attribute at the center of the CSS user interface design
process.
But there's a problem. We are writing this UI code in a JavaScript file, and
class in the JavaScript programming language is a reserved word. This
means we can't use this reserved word as we want. It serves a specific
purpose (defining JavaScript classes) and the React creators had to choose a
different name for it.
React will try its best to make sure things don't break, but it will raise you a
lot of warnings in the Developer Tools:
This is not the only HTML feature that suffers from this problem, but it's the
most common one.
Another big difference between JSX and HTML is that HTML is very relaxed,
we can say. Even if you have an error in the syntax, you close the wrong tag,
or you have a mismatch, the browser will try its best to interpret the HTML
without breaking.
18
It's one of the core features of the Web. It is very forgiving.
JSX is not forgiving. If you forget to close a tag, you will have a clear error
message:
React usually gives very good and informative error messages that point
you in the right direction to fix the problem.
Another big difference between JSX and HTML is that in JSX we can embed
JavaScript.
19
9. Embedding JavaScript in JSX
One of the best features of React is that we can easily embed JavaScript into
JSX.
Other frontend frameworks, for example, Angular and Vue, have their own
specific ways to print JavaScript values in the template, or perform things
like loops.
React is not adding new things. Instead, it lets us use JavaScript in the JSX,
by using curly brackets.
The first example of this that I will show you comes directly from the App
and then, in the JSX, we assign this SVG file to the src attribute of an img
tag:
Let's do another example. Suppose the App component has a variable called
message :
function App() {
const message = 'Hello!'
//...
}
We can print this value in the JSX by adding {message} anywhere in the
JSX.
Inside the curly brackets { } we can add any JavaScript statement, but just
one statement for every curly bracket block.
20
And the statement must return something.
For example, this is a common statement you will find in JSX. We have a
ternary operator where we define a condition ( message === 'Hello!' ), and
we print one value if the condition is true, or another value (the content of
message , in this case) if the condition is false:
{
message === 'Hello!' ? 'The message was "Hello!"' : message
}
What do we mean by state? The state is the set of data that is managed
by the component.
Think about a form, for example. Each individual input element of the form
is responsible for managing its state: what is written inside it.
21
Calling useState() , you will get back a new state variable, as a function that
we can call to alter its value.
useState() accepts the initial value of the state item and returns an array
containing the state variable, and the function you call to alter the state.
Example:
This is important. We can't just alter the value of a state variable directly. We
must call its modifier function. Otherwise, the React component will not
update its UI to reflect the changes of the data. Calling the modifier is the
way we can tell React that the component state has changed.
The syntax is a bit weird, right? Since useState() returns an array we use
array destructuring to access each individual item, like this: const [count,
setCount] = useState(0)
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>Click me</button>
</div>
)
}
You can add as many useState() calls you want, to create as many state
variables as you want:
22
const [count, setCount] = useState(0)
const [anotherCounter, setAnotherCounter] = useState(0)
function WelcomeMessage() {
return <p>Welcome!</p>
}
<WelcomeMessage />
This component does not have any initial value. It does not have props.
function WelcomeMessage(props) {
return <p>Welcome!</p>
}
23
Now that we have the prop, we can use it inside the component, for example,
we can print its value in the JSX:
Curly brackets here have various meanings. In the case of the function
argument, curly brackets are used as part of the object destructuring syntax.
Then we use them to define the function code block, and finally in the JSX to
print the JavaScript value.
A component either holds data (has state) or receives data through its props.
We can also send functions as props, so a child component can call a function
in the parent component.
A special prop is called children . That contains the value of anything that is
passed between the opening and closing tags of the component, for example:
In this case, inside WelcomeMessage we could access the value Here is some
24
In a React application, data typically flows from a parent component to a
child component, using props as we saw in the previous section:
If you pass a function to the child component, you can however change the
state of the parent component from a child component:
Inside the Counter component we can now grab the setCount prop and call
it to update the count state in the parent component when something
happens:
setCount(1)
//...
}
You need to know that there are more advanced ways to manage data, which
include the Context API and libraries like Redux, but those introduce more
complexity and 90% of the time using those 2 ways I just explained are the
perfect solution.
Let's talk about click events, which are pretty simple to digest.
25
You can use the onClick attribute on any JSX element:
<button
onClick={(event) => {
/* handle the event */
}}
>
Click here
</button>
When the element is clicked, the function passed to the onClick attribute is
fired.
function App() {
return <button onClick={handleClickEvent}>Click here</button>
}
When the click event is fired on the button, React calls the event handler
function.
The useEffect hook allows components to have access to the lifecycle events
of a component.
26
When you call the hook, you pass it a function. The function will be run by
React when the component is first rendered, and on every subsequent re-
render/update.
React first updates the DOM, then calls any function passed to useEffect() .
Here is an example:
useEffect(() => {
console.log(`You clicked ${count} times`)
})
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>Click me</button>
</div>
)
}
useEffect(() => {
console.log(`Hi ${name} you clicked ${count} times`)
}, [name, count])
Similarly, you can tell React to only execute the side effect once (at mount
time), by passing an empty array:
27
useEffect(() => {
console.log(`Component mounted`)
}, [])
useEffect() is great for adding logs, accessing 3rd party APIs and much more.
I want to give you some pointers now, because it's easy to get lost in the sea
of tutorials and courses about React.
Learn more theory about the Virtual DOM, writing declarative code,
unidirectional data flow, immutability, and composition.
Start building some simple React applications. For example, build a simple
counter or interact with a public API.
Learn how to apply CSS in a React application, with plain CSS or Styled
Components.
Learn how to manage state using the Context API, useContext and Redux.
28
Most of all, make sure you practice by building sample applications to apply
everything you learn.
29
Conclusion
Thanks a lot for reading this book.
30