DEV Community

Raushan Kumar
Raushan Kumar

Posted on

ReactJS - How to Start React Application

STEP - 1

npx create-react-app application-name-of-your-choice

// this will create a new application name application-name-of-your-choice

STEP - 2

cd application-name-of-your-choice

// this will move you to your application folder.

STEP - 3

npm start

// this will start your development server with localhost.

HAPPY CODING...........

Top comments (0)