Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.19 KB

publishing.md

File metadata and controls

34 lines (20 loc) · 1.19 KB

Deploying & Publishing

🖥 Web

Packaging for Web

npm run web-bundle

Creates a minified JavaScript bundle (that also houses the minified css) and places it next to the index.html in /build that you can serve with any static file server.


📱 React Native

Publishing to Expo's React Native Community for testing

Expo provides free hosting for the JS-only apps created by CRNA, allowing you to share your app through the Expo client app. This requires registration for an Expo account.

Install the exp command-line tool, and run the publish command:

npm i -g exp
exp publish

Check out Expo's docs.

Building an Expo "standalone" app for the app store

You can also use a service like Expo's standalone builds if you want to get an IPA/APK for distribution without having to build the native code yourself.