Reputation: 2147
I've been using expo/exp for a while to build React Native applications and can't seem to find clear documentation on what the diffeence between exp
and expo
is on the command line.
Could someone please elaborate?
Upvotes: 4
Views: 1666
Reputation: 901
"exp" is our original command-line interface. "expo_cli" is our new dev tools that we see as the best path moving forward as it combines the best of both worlds from the exp CLI and our XDE gui. You can read more about it here: https://blog.expo.io/announcing-expo-dev-tools-beta-c252cbeccb36
The latest docs recommend using expo-cli, and not exp.
So, start with $ expo init
instead of $ exp init
.
Upvotes: 2