How to create our React Project offline?
![]() |
| How to Create React App Offline | IndianTechnoEra |
On creating React Project with npx create-rect- app my-project then it needs to be online and it takes some time depending on our internet speed.
1. Installing required packages one time
Goto command prompt of your vs code install CLI
npm install -g create-react-app-offline
2. Create React Project offline
crao -m <app-name>
or
crao -n --name sam-app
eg. crao -m sam-app
cd sam-app
npm start
or
yarn start
