Skip to content

Instantly share code, notes, and snippets.

@ManishPoduval
Last active February 23, 2021 03:40
Show Gist options
  • Save ManishPoduval/4993794a8413cbc8a7fadb5b976eb943 to your computer and use it in GitHub Desktop.
Save ManishPoduval/4993794a8413cbc8a7fadb5b976eb943 to your computer and use it in GitHub Desktop.
Create React App first steps

##Complete the following steps:

  • Open your command line or terminal
  • cd into your projects directory
  • Run npx create-react-app APP_NAME to create a new folder called APP_NAME with a React app inside

eg npx create-react-app react-day2

OR

  • Run npm i -g create-react-app and then create-react-app APP_NAME

  • cd ./APP_NAME to go into the new directory

  • Run npm run start to start your React app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment