Skip to content

React Native (Expo)

Terminal window
tinkerise mobile rn my-rn-app --typescript

Use rn when you want a React Native project with Expo managed workflow.

  • Node.js >=18.0.0
Terminal window
cd my-rn-app
bun install
bunx expo start
  • --no-install -> --no-install
  • --typescript -> --template blank-typescript
  • tinkerise delegates to create-expo-app.
  • The scaffolder ID is intentionally rn for short CLI usage.
  • Passthrough args are supported.
  • --typescript maps to Expo’s --template blank-typescript starter.
  • --no-install maps directly to create-expo-app --no-install.

You get a standard Expo-managed React Native scaffold, usually including:

  • App entry files (App.tsx or equivalent template output)
  • Expo config (app.json / app.config.*)
  • JavaScript/TypeScript project scripts for local and device testing
  • Mobile-ready project structure aligned with Expo workflow

See full CLI flags: /reference/commands/