grifotv / create-rn-app-comparison

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comparison of ways of creating a React Native app

Core requirements

  • RN V0.63
  • TS support
  • Bare workflow
  • w/ Expo unimodules

Variants

  1. myapp--npx-rn--ts-template ($ npx react-native init MyApp --template react-native-template-typescript)

    • RN V0.63
    • TS support
    • Bare workflow
    • w/ Expo unimodules
  2. myapp--npx-crnapp--no-template ($ npx create-react-native-app MyApp)

    • RN V0.63
    • TS support
    • Bare workflow
    • w/ Expo unimodules
  3. myapp--npx-crnapp--ts-template ($ npx create-react-native-app MyApp -t with-typescript)

    • RN V0.63
    • TS support
    • Bare workflow
    • w/ Expo unimodules
  4. myapp--expo--ts-template ($ expo init MyApp, pick "Bare workflow > minimal (TypeScript)")

    • RN V0.63
    • TS support
    • Bare workflow
    • w/ Expo unimodules

About