Skip to content

Instantly share code, notes, and snippets.

@darth-veitcher
Created September 22, 2019 14:01
Show Gist options
  • Save darth-veitcher/d806845c3c36c18602f94cdbbab43b01 to your computer and use it in GitHub Desktop.
Save darth-veitcher/d806845c3c36c18602f94cdbbab43b01 to your computer and use it in GitHub Desktop.
create expo boilerplate shortcut
# create a react-native project
create_expo(){
npx expo-cli init -t blank --yarn --name "$@" "$@"
cd "$@"
expo-cli install react-navigation react-native-gesture-handler react-native-reanimated react-navigation-stack axios react-native-json-tree
}
@darth-veitcher
Copy link
Author

creates expo application with some fairly standard boilerplate commands that I tend to always need

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment