- Forums
- react
- Create New React App with Command: $ npx create-react-app app-name
this is simple snippet to show you the command to generate and create a new react application very simple [5072], Last Updated: Mon Jun 24, 2024
dd
Sat Feb 04, 2023
0 Comments
298 Visits
This is simple snippet to show you the command to generate and create a new react application very simple just follow these steps:
- Open your terminal
- cd to where you want to install the application
$ npx create-react-app app-name
$ cd app-name
- Start the Application:
$ npm start
- Open browser to URL:
http://localhost:3000
That is the basics of it.
Good luck