Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 825 Bytes

File metadata and controls

22 lines (20 loc) · 825 Bytes

react-native-template-typescript

Built with

  • react-native
  • react-navigation
  • redux-toolkit
  • react-native-reanimated v2

Note: Using for MacOS only!

Go to the folder you want to initialize project, then run these steps in a new terminal:

  1. Run official command to init a blank React Native project with typescript template. Please replace <your-project-name> with the name you want.
npx react-native init <your-project-name> --template react-native-template-typescript
  1. Go to the project which is created above
cd <your-project-name>
  1. Paste this to terminal, press enter and you are good to go (curl is required)
curl https://raw.githubusercontent.com/thainquet/react-native-template-typescript/main/script.sh > sc.sh && chmod 777 sc.sh && ./sc.sh && rm sc.sh