Master React.js: Components for Modern Web
Sobre a Aula

Creating a Basic React Project

 

In the first module, let’s start by creating a basic React project. To do this, we will follow some simple steps.

First, make sure you have Node.js installed on your computer. Then, open the terminal and navigate to the directory where you want to create your project.

Use the command npx create-react-app your-project-name to create the React project. This will create a basic structure for your application, including all the necessary files and dependencies.

Once the project is successfully created, you can enter the project directory and start the development server using the command npm start or yarn start.

This will start the server and automatically open your default browser with the React application running. Now you can start editing the source code of your application in the src directory.

For example, let’s create a simple greeting component. In the App.js file, you can replace the existing code with something like:

import React from 'react';

function App() {
  return (
    <div>
      <h1>Hello, world!</h1>
    </div>
  );
}

export default App;

This is a basic functional component that simply displays “Hello, world!” on the page. You can save the file and see the changes reflected automatically in your browser as you edit the source code.

With these simple steps, you have successfully created a basic React project and are ready to start exploring and learning more about this powerful JavaScript library!

Entrar na conversa
Rolar para cima