Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-19 00:20:57 +00:00
parent 83af6b3c72
commit c80d49f5d0
26 changed files with 464 additions and 13 deletions

37
tldr/expo Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# expo
> Build, develop, and deploy React Native apps.
> More information: <https://docs.expo.dev/eas/>.
- Build an Android APK or AAB:
`expo build:android`
- Build an iOS IPA:
`expo build:ios`
- Run the app in Expo Go:
`expo start`
- Install a dependency:
`expo install <package_name>`
- Prebuild native Android/iOS projects:
`expo prebuild`
- Run the app on Android:
`expo run:android`
- Run the app on iOS:
`expo run:ios`