Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/expo/web-examples
Examples of using Expo in the browser.
https://github.com/expo/web-examples
Last synced: about 2 months ago
JSON representation
Examples of using Expo in the browser.
- Host: GitHub
- URL: https://github.com/expo/web-examples
- Owner: expo
- Archived: true
- Created: 2019-03-18T18:55:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-08T08:11:20.000Z (over 3 years ago)
- Last Synced: 2024-07-31T07:18:07.130Z (5 months ago)
- Language: JavaScript
- Size: 5.31 MB
- Stars: 272
- Watchers: 11
- Forks: 54
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - web-examples - Examples of using Expo in the browser. (JavaScript)
- awesome-list - web-examples
README
# Expo Web only Examples
This repo is now deprecated, **please see [expo/examples](https://github.com/expo/examples) instead.**
For guides and information on Expo web see the [Expo docs](https://docs.expo.io/) and this [Gitbook about tips and tricks](https://baconbrix.gitbook.io/react-native-web/)
## Getting Started with Expo Web
Install the CLI and make a new universal project.
```sh
npm install -g expo-cliexpo init myProject
```Now enter the project and start it!
```sh
cd myProjectexpo start --web
```Now you can build and deploy the website.
```sh
expo build:webnpx netlify deploy --dir web-build
```That's it, you just created your first Expo website!! See some [examples](https://github.com/expo/examples) or learn more in the [Expo Documentation](https://docs.expo.io/versions/v36.0.0/tutorial/planning).