0

I'm learning ReactJS, but in all the tutorials it says that the way to create a new react app is this:

npx create-react-app //name of my app

but this command creates an hello world example.

How do I create a new ReactJS app without the hello world sample code

npx create-react-app my-shop
Henry Ecker
  • 34,399
  • 18
  • 41
  • 57
  • Does this answer your question? [How to create a React App without Create-react-app](https://stackoverflow.com/questions/50565466/how-to-create-a-react-app-without-create-react-app) – DSDmark Feb 01 '23 at 15:56

2 Answers2

0

You can customize your react app as you like and push that into github.

In the future, when you want to create new react-app, instead of running "npx create-react-app", you just clone it from your github repository.

Long Nhat
  • 1
  • 1
  • 1
0

Feature you're looking for is described at CRA documentation

LazyCat01
  • 957
  • 7
  • 23