create-expo 1.0.0 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +45 -0
- package/build/index.js +85 -0
- package/package.json +56 -7
- package/template/gitignore +14 -0
- package/index.js +0 -52
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<!-- Title -->
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://github.com/expo/examples">
|
|
5
|
+
<img alt="create-expo-app" src="./.gh-assets/banner.svg">
|
|
6
|
+
<h1 align="center">Create Expo App</h1>
|
|
7
|
+
</a>
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<!-- Header -->
|
|
11
|
+
|
|
12
|
+
<p align="center">
|
|
13
|
+
<b>The fastest way to create universal React apps</b>
|
|
14
|
+
<br />
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<!-- iOS -->
|
|
18
|
+
<img alt="Supports Expo iOS" longdesc="Supports Expo iOS" src="https://img.shields.io/badge/iOS-000.svg?style=flat-square&logo=APPLE&labelColor=999999&logoColor=fff" />
|
|
19
|
+
<!-- Android -->
|
|
20
|
+
<img alt="Supports Expo Android" longdesc="Supports Expo Android" src="https://img.shields.io/badge/Android-000.svg?style=flat-square&logo=ANDROID&labelColor=A4C639&logoColor=fff" />
|
|
21
|
+
<!-- Web -->
|
|
22
|
+
<img alt="Supports Expo Web" longdesc="Supports Expo Web" src="https://img.shields.io/badge/web-000.svg?style=flat-square&logo=GOOGLE-CHROME&labelColor=4285F4&logoColor=fff" />
|
|
23
|
+
</p>
|
|
24
|
+
<p align="center">
|
|
25
|
+
<a href="https://packagephobia.now.sh/result?p=create-expo-app">
|
|
26
|
+
<img alt="the best way to bootstrap a react native app" longdesc="the best way to create a react native app" src="https://flat.badgen.net/packagephobia/install/create-expo-app" />
|
|
27
|
+
</a>
|
|
28
|
+
</p>
|
|
29
|
+
|
|
30
|
+
</p>
|
|
31
|
+
|
|
32
|
+
<!-- Body -->
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
# With NPM
|
|
36
|
+
npx create-expo-app
|
|
37
|
+
|
|
38
|
+
# With Yarn
|
|
39
|
+
yarn create expo-app
|
|
40
|
+
|
|
41
|
+
# With pnpm
|
|
42
|
+
pnpm create expo-app
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Once you're up and running with Create Expo App, visit [this tutorial](https://docs.expo.dev/tutorial/planning/) for more information on building mobile apps with React.
|