Created
September 22, 2019 14:01
-
-
Save darth-veitcher/d806845c3c36c18602f94cdbbab43b01 to your computer and use it in GitHub Desktop.
create expo boilerplate shortcut
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
creates expo application with some fairly standard boilerplate commands that I tend to always need