Updated June 8, 2021
List of React Native/Expo Templates Created by React Native School
We create a lot of React Native projects here at React Native School. Project setup can take a decent chunk of time.
With that, we've created a handful of super simple templates to kick start any React Native project.
Each one includes:
- Eslint & Prettier configured
- React Navigation v5
- Testing Configured
- Simple project structure
- Small component library to get started with
There are versions written in JavaScript and TypeScript targetting React Native and Expo. The actual content of each template is exactly the same though.
Expo Templates
JavaScript
expo init my-app --template @react-native-school/expo-template
More info on @react-native-school/expo-template
TypeScript
expo init --template @react-native-school/expo-typescript-template
More info on @react-native-school/expo-typescript-template
React Native Templates
JavaScript
npx react-native init AppName --template @react-native-school/react-native-template
More info on @react-native-school/react-native-template
TypeScript
npx react-native init AppName --template @react-native-school/react-native-typescript-template
More info on @react-native-school/react-native-typescript-template
.