How to Set Up a React App in 5 Minutes (Step-by-Step)
Posted on March 27, 2025 • 5 min read • 997 wordsLearn how to set up a React app in 5 minutes with this easy, step-by-step guide. Perfect for beginners!
React is one of the best libraries to build a modern web app. React simplifies creating dynamic user interfaces and enhances web development efficiency. Setting up a React app might seem like a complicated task, but it’s easier than you think.
Before diving into setting up a React app, you need to ensure that you have some prerequisites in place.
React depends on Node.js and npm (Node Package Manager) to manage dependencies and run the development server. If you haven’t installed these yet, follow these steps:
node -v
npm -v
Both commands should return version numbers, indicating that Node.js and npm have been installed successfully.
You will need a code editor to write and edit your React code. Some popular options include:
Install one of these editors to begin working on your React app.
React is built on JavaScript, so having a basic understanding of JavaScript fundamentals like functions, arrays, and objects is essential. While you don’t need to be a JavaScript expert to use React, knowing how to work with JavaScript syntax and concepts will make your development process smoother.
Now that you have your environment set up, let’s create a new React app.
The easiest way to set up a React app is by using Create React App, a command-line tool that automatically handles the setup and configuration for you.
To create your React app, open a terminal (or command prompt) and run the following command:
npx create-react-app my-app
This will generate a new React project named my-app
. You can replace “my-app” with any other name you prefer for your project. The command will install React, React-DOM, and other dependencies, as well as set up the basic project structure.
Once the setup is complete, navigate to the newly created directory and start the development server with the following commands:
cd my-app
npm start
This will start a local development server and automatically open your browser with the React app running on http://localhost:3000
. If it doesn’t open automatically, you can manually visit this URL in your browser to view the app.
Now that your React app is up and running, it’s important to understand the structure of the project. React’s default project setup includes several files and folders.
When you open the project folder, you’ll notice several files and directories. Here’s a breakdown of the most important ones:
public/
Folder: Contains the index.html
file where your React app will be rendered. You’ll usually modify the content of this file to change static elements like the title and meta tags.src/
Folder: This is where all your React components and JavaScript files go. It includes a default App.js
file, which serves as the main component of your app.node_modules/
Folder: Contains all the dependencies installed through npm. You won’t typically interact with this folder, but it’s crucial for your app to function properly.package.json
File: Defines the project’s dependencies, scripts, and metadata. For example, it includes the scripts to run the development server (npm start
), build the production version (npm run build
), and run tests (npm test
).The src/App.js
file contains a default React component. This is the starting point for customizing your app. You can edit this file to change the default content, add new components, and more.
Here’s a quick example of how to modify the App.js
file:
import React from 'react';
function App() {
return (
<div className="App">
<h1>Welcome to My First React App!</h1>
</div>
);
}
export default App;
By changing the content inside the return()
statement, you can easily modify the UI of your app.
Now that you’ve set up your React app and familiarized yourself with the project structure, it’s time to run the app and see it in action.
If you followed the previous steps and ran npm start
, your app is already up and running. But, just to recap, here’s the command you use to launch the React development server:
npm start
This will compile the code and launch the app in your default web browser. The development server will also automatically reload whenever you make changes to the code, so you can instantly see the updates.
After running the development server, your app should be available at http://localhost:3000
by default. Open your browser and type the URL, and you should see the default React page or your custom changes.
Congratulations! You’ve successfully set up a React app in just 5 minutes. As you get more comfortable with React, you’ll be able to add more features, integrate APIs, and create complex user interfaces. The React ecosystem has a ton of powerful tools and libraries to help you along the way, from routing with React Router to managing state with Redux.
To summarize, here’s the quick version of what you did:
App.js
component.With this foundation, you can now start building React applications with ease. React is an incredibly powerful and popular JavaScript library that powers many large-scale web applications today.