Curriculum
Course: React
Login

Curriculum

React

Text lesson

Setting up a React Environment

If you have npx and Node.js installed, you can create a React application using create-react-app.

If you have previously installed create-react-app globally, it’s advisable to uninstall it to ensure npx uses the latest version. To do so, run the command: npm uninstall -g create-react-app.

Use this command to generate a React application named my-react-app:

npx create-react-app my-react-app

create-react-app will configure everything required to run a React application.