@echobind/expo-typescript
v2.0.1
Published
Expo Starter template with TypeScript
Downloads
143
Readme
Quick start
- Install Expo CLI with
npm install --global expo-cli
oryarn global add expo-cli
. - Create new React Native project with
expo init --template @echobind/expo-typescript
. - Change directory to your project's folder with
cd <your-project-name>
. - Run Metro Bundler with
yarn start
. - Build and run the project with
yarn ios
oryarn android
.
Happy hacking! 🤓
Setting up a Development Client
This template is set up to use Expo Development Builds, which let you test your app on an iOS or Android device without having to install Xcode or Android Studio.
If your app is simple and you want to use Expo Go, just remove the --dev-client
from the "start" script in package.json.
If you are planning on adding some custom modules to your app, you'll need to create a custom development client and install it on your device. There are a few steps you'll need to do first.
- Add a URI Scheme to your app by running
npx uri-scheme add customscheme
- Follow these instructions to set up and create the development build with EAS Build.
- Sign up for an Expo account
- Install the Expo and EAS CLIs
- Sign in to the EAS CLI
- Register your device
- Build the development build
Note that you will need an Apple Developer account and an Expo account to use EAS Build. You do not however need to pay the $100 development fee.
- Install the built app on your test device.
- Start the app (make sure you are using the
expo start --dev-client
command) - Scan the resulting QR code with your camera to open your app connected
If the QR code doesn't work, you can manually connect to the bundler by shaking the phone, choosing "Configure Bundler" and entering your computer's IP address.
TODOs
- Contexts (any reusable ones)
- Common reusable UI components
- Expo splashscreen
- Hopefully some e2e testing
Available commands
yarn start
- start Metro Bundler.yarn ios
- build and run iOS.yarn android
- build and run Android.yarn lint
,lint:fix
- check code for errors.yarn g:<generator name>
- generate some code (see package.json for specific scripts).