Skip to content

Commit c29e7c4

Browse files
committed
Update README
1 parent 3c8c77d commit c29e7c4

File tree

1 file changed

+15
-27
lines changed

1 file changed

+15
-27
lines changed

README.md

+15-27
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<!-- Header -->
1111

1212
<p align="center">
13-
<b>The fastest way to create universal React Native apps</b>
13+
<b>The fastest way to create React Native apps</b>
1414
<br />
1515

1616
<p align="center">
@@ -35,69 +35,57 @@
3535
npx create-react-native-app
3636
```
3737

38-
Once you're up and running with Create React Native App, visit [this tutorial](https://reactnative.dev/docs/tutorial) for more information on building mobile apps with React.
38+
Once you're up and running with Create React Native App, visit [the tutorial on reactnative.dev](https://reactnative.dev/docs/tutorial) and [the tutorial on expo.dev](https://docs.expo.dev/tutorial/introduction/) for more information on building mobile apps with React.
3939

4040
<p align="center">
4141
<img align="center" alt="Product: demo" src="./.gh-assets/crna.gif" />
4242
</p>
4343

44-
## Features
45-
46-
- Native project ready to be built on to your device.
47-
- Support for unimodules and auto-linking.
48-
- OTA updates, and Gestures out of the box.
49-
- Full support for React Native web.
50-
- Plug-n-play custom templates.
51-
- Works with the Expo Client app.
52-
5344
## Usage
5445

5546
- `npx create-react-native-app` Create a new native React app.
47+
- `npx crna` Alias for `npx create-react-native-app`.
5648
- `yarn ios` -- (`expo run:ios`) Build the iOS App (requires a MacOS computer).
5749
- `yarn android` -- (`expo run:android`) Build the Android App.
5850
- `yarn web` -- (`expo start:web`) Run the website in your browser.
5951

6052
### Templates
6153

62-
By default you create a [bare-workflow React](https://docs.expo.io/bare/exploring-bare-workflow/) project with support for iOS, Android, and web. You can opt to use an example project instead by selecting the "Templates from ..." option. Custom templates can be used with `--template <Example Name or GitHub URL>` option.
54+
By default you create a [bare workflow React](https://docs.expo.dev/bare/overview/) project with support for iOS, Android, and web. The project comes preconfigured with support for [Expo Modules](https://docs.expo.dev/modules/overview/), an API writing native modules using Swift and Kotlin, and this also makes it possible to use any library in the [Expo SDK](https://docs.expo.dev/versions/latest/).
55+
56+
You can opt to use an example project instead by selecting the "Templates from ..." option. Custom templates can be used with `--template <Example Name or GitHub URL>` option.
6357

6458
- Use an [example](https://github.com/expo/examples): `npx create-react-native-app -t with-typescript`
6559
- Use a custom template: `npx create-react-native-app --template https://github.com/someone/my-react-starter` -- Only works with GitHub repos on the master branch.
6660
- All examples can be modified in the [expo/examples](https://github.com/expo/examples) repo.
6761

6862
## Sections
6963

70-
- [Usage with Expo Client App](#usage-with-expo-client-app)
64+
- [Usage with Expo Go App](#usage-with-expo-go-app)
7165
- [Support and Contact](#support-and-contact)
7266
- [FAQs](#faqs)
7367
- [Contributing](#contributing)
7468

7569
## Usage with Expo Go App
7670

77-
Expo Client enables you to work with all of the [Components and APIs](https://facebook.github.io/react-native/docs/getting-started) in `react-native`, as well as the [JavaScript APIs](https://docs.expo.io/versions/latest) that the are bundled with the Expo App.
78-
79-
Expo Client supports running any project that doesn't have custom native modules added.
71+
Expo Go enables you to work with all of the [Components and APIs](https://facebook.github.io/react-native/docs/getting-started) in `react-native`, as well as the [JavaScript APIs](https://docs.expo.io/versions/latest) that the are bundled with the Expo app.
8072

8173
- Download the "Expo Go" app from the Play Store or App Store.
82-
- Start your project with Expo
83-
- Install the CLI `npm i -g expo-cli`
84-
- Start the project `expo start`
85-
- Open the project:
86-
- Sign in to expo and the project will appear in the app.
87-
- Or point your phone's camera at the QR code in the terminal (press "c" to view it).
74+
- Start your project with Expo CLI: `npm start`
75+
- Open the project by scanning the QR code in the terminal.
8876

8977
## Support and Contact
9078

9179
If you're having issues with Create React Native App, please make sure:
9280

9381
- The issue is not covered in the [Expo Docs](https://docs.expo.io/versions/latest/)
94-
- There is not already an [open issue](https://github.com/expo/expo-cli/issues) for your particular problem
82+
- There is not already an [open issue](https://github.com/expo/create-react-native-app/issues/) for your particular problem
9583

96-
If you've checked the documentation and currently open issues, please either [open a new GitHub issue](https://github.com/expo/create-react-native-app/issues/new) or ask a question on [Expo forums](https://forums.expo.io/c/help).
84+
If you've checked the documentation and currently open issues, please either [open a new GitHub issue](https://github.com/expo/create-react-native-app/issues/new) or ask a question on [Expo Community Discord](https://chat.expo.dev).
9785

9886
## Contributing
9987

100-
Please see [Contributing guide](https://github.com/expo/expo-cli/blob/master/CONTRIBUTING.md) in the Expo CLI monorepo for instructions on contributing to Expo CLI.
88+
Refer to the [Contributing guide](https://github.com/expo/create-react-native-app/blob/main/CONTRIBUTING.md) for more information.
10189

10290
### Attribution
10391

@@ -107,7 +95,7 @@ The examples feature was inspired by the `templates` system of [create-next-app]
10795

10896
CRNA is focused on being the fastest way to bootstrap a React Native app without worrying about the native platforms or bundlers required for developing and shipping apps. Other tools provide both an init script (which is slower) and a suite of other tools that can be used for interacting with the project. CRNA is meant to be used with any of the following tools:
10997

110-
- [Expo CLI](https://github.com/expo/expo-cli) by [Expo team](https://expo.io)
98+
- [Expo CLI](https://docs.expo.dev/more/expo-cli/) by [Expo team](https://expo.dev)
11199
- [Ignite CLI](https://github.com/infinitered/ignite) by [Infinite Red](https://infinite.red/)
112100
- [React Native Community CLI](https://github.com/react-native-community/cli) by members of [the React Native community](https://github.com/orgs/react-native-community/people)
113101

@@ -127,7 +115,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
127115
<table>
128116
<tr>
129117
<td align="center"><a href="https://twitter.com/baconbrix"><img src="https://avatars1.githubusercontent.com/u/9664363?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Evan Bacon</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=EvanBacon" title="Code">💻</a> <a href="https://github.com/expo/create-react-native-app/commits?author=EvanBacon" title="Documentation">📖</a> <a href="#design-EvanBacon" title="Design">🎨</a> <a href="#maintenance-EvanBacon" title="Maintenance">🚧</a> <a href="https://github.com/expo/create-react-native-app/pulls?q=is%3Apr+reviewed-by%3AEvanBacon" title="Reviewed Pull Requests">👀</a></td>
130-
<td align="center"><a href="https://expo.io"><img src="https://avatars2.githubusercontent.com/u/90494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brent Vatne</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=brentvatne" title="Code">💻</a> <a href="https://github.com/expo/create-react-native-app/commits?author=brentvatne" title="Documentation">📖</a> <a href="https://github.com/expo/create-react-native-app/pulls?q=is%3Apr+reviewed-by%3Abrentvatne" title="Reviewed Pull Requests">👀</a></td>
118+
<td align="center"><a href="https://expo.dev"><img src="https://avatars2.githubusercontent.com/u/90494?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Brent Vatne</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=brentvatne" title="Code">💻</a> <a href="https://github.com/expo/create-react-native-app/commits?author=brentvatne" title="Documentation">📖</a> <a href="https://github.com/expo/create-react-native-app/pulls?q=is%3Apr+reviewed-by%3Abrentvatne" title="Reviewed Pull Requests">👀</a></td>
131119
<td align="center"><a href="http://hamzah"><img src="https://avatars0.githubusercontent.com/u/26879042?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Hamza Halilovic</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=hamzahalilovic" title="Code">💻</a></td>
132120
<td align="center"><a href="https://bycedric.com"><img src="https://avatars2.githubusercontent.com/u/1203991?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cedric van Putten</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=byCedric" title="Code">💻</a></td>
133121
<td align="center"><a href="https://twitter.com/VilleImmonen"><img src="https://avatars3.githubusercontent.com/u/497214?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ville Immonen</b></sub></a><br /><a href="https://github.com/expo/create-react-native-app/commits?author=fson" title="Code">💻</a> <a href="https://github.com/expo/create-react-native-app/pulls?q=is%3Apr+reviewed-by%3Afson" title="Reviewed Pull Requests">👀</a></td>

0 commit comments

Comments
 (0)