» Make Pomodoro Web App in React » 2. Development » 2.1 Create React Project

Create React Project

Run the following command to create a new React project.

npx create-react-app lr_pomodoro

This command will create a new folder called lr_pomodoro with the basic structure of a React project.

If you already have an existing folder and you want to initialize a new React project in that folder, you can use the command with a period(.) to specify the current directory.

npx create-react-app .

Start the development server by running:

npm start

This command will start the development server, and you can view your React app in a web browser at http://localhost:3000/.

PrevNext