npx create-expo-app@latest
is it possible creating expo app with desired SDK version ?
jsx - How can I create an expo app with Javascript? - Stack Overflow
use `npx create-expo-app --template` create a new blank ts project
Videos
» npm install create-expo
Hello everyone,
I'm relatively new to the world of react-native.
I've now come across the fact that I wanted to learn some React in my spare time and made something with ChakraUi.
Now my app has been built so well that I want to convert it into a mobile app.
I have read a lot that the first step with Expo was a good solution for me.
But I have some questions that I still have problems understanding.
If I want to build a new app with npx create-expo-app@latest, the structure is quite complicated for me at first and the one thing is that TypeScript is used.
I mainly only used JavaScript in my React app. Can I get away from TypeScript at all?
Another question is. Do I need such a complicated structure for now.
Can't I use something like this: https://snack.expo.dev/?platform=ios
Here the structure looks pretty simple and understandable.
is there any way so that while creating app i can specify my desired SDK version so that the apps configurations and everything will also work according to that SDK version, i want to stop expo from creating app with sdk52 by default i don't how may errors it may cause when i start developing with it , since i'm comfortable with SDK 51 i want to work in that version and slowly take time before getting into SDK 52
I got it the correct command would be:
npx create-expo-app@latest --template
and select the blank from the options to get the bare minimum configuration, just like the React Native one with JavaScript.
npx create-expo-app --template blank
This command helps you to install app on basic format which is 'jsx' format.