Covering the fundamentals of React, and how to set up your first React project.
React is a JavaScript library for building user interfaces, especially for a fast, dynamic, and responsive UI.
Before you start a React project, you need to have Node.js and npm (Node Package Manager).
Run this in your terminal:
node -v
npm -v
If you don't have Node.js and npm installed, go to the official website to install them: Node.js.
If you run into issues with WebVitals.js
, run:
npm i web-vitals --save-dev
This command will set up everything for you, including a development server, build scripts, and a project structure.
npx create-react-app project-test --legacy-peer-deps
Replace project-test
with your project name.
After creating your React project from step 3
, navigate to your project folder:
cd project-test
Inside the project-test
folder, youโll find the following structure:
src/
: Contains all of your application's source code, including React components (e.g., App.js).public/
: Contains static files, like index.html, where the React app is rendered.node_modules/
: Contains all the dependencies required to run the app.
To run your React app and see it in the browser, start the development server with this command:
npm start
Your app will automatically open in the browser at http://localhost:3000
React apps are built using components.
Components
: Reusable pieces of code that describe a part of the user interface.JSX
: JavaScript XML is a syntax extension for JavaScript that looks like HTML. JSX is used to define the structure of your components.
In React, components are commonly written as functions (functional components) that return JSX.
In your src/App.js file, youโll see a default component that looks like this:
import React from 'react';
function App() {
return (
<div className="App">
<h1>Hello, React!</h1>
</div>
);
}
export default App;
You can implement other custom-made components by including them as imports, like so:
import React from 'react';
import Navbar from './Navbar'; // Import the Navbar component
function App() {
return (
<div className="App">
<Navbar /> // Implements the component
<h1>Hello, React!</h1>
</div>
);
}
export default App;
Props
: Use props to pass data from one component to another.State
: Use state to store data that can change over time, like form inputs or API responses.
For example:
import React, { useState } from 'react';
function Greeting(props) {
return <h1>Hello, {props.name}!</h1>;
}
function App() {
const [name, setName] = useState("React Developer");
return (
<div className="App">
<Greeting name={name} />
<button onClick={() => setName("Minko82")}>Change Name</button>
</div>
);
}
export default App;
In this example:
- The Greeting component receives a
prop
name and displays it. - The App component has
state
(name) that can be changed when you click the button.
Once youโve written your components, you can:
- Test your components using
npm test
. - Build your app for production using
npm run build
.
Yay we made it to the end of this React speedrun! \(^-^)/
โจ