4

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?

enter image description here

PrimeTimeTran
  • 1,807
  • 2
  • 17
  • 29

2 Answers2

2

According to the docs of expo-cli and exp-cli, expo-cli includes not only cli but also XDE, and exp-cli only includes cli which is useful when you don't need a full-fledged development environment such as in CI.

floydwch
  • 133
  • 1
  • 9
2

"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.

roshnet
  • 1,695
  • 18
  • 22
Divyang Solanki
  • 901
  • 1
  • 9
  • 24
  • You guys really need to do a better job of documenting changes like this. Tweeting and blog posts is not enough. When new users come to expo they encounter the old references and don't likely read your whole blog! – Alex Neth Apr 02 '20 at 20:12