1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 19:05:59 +02:00

react-native-start: add page (#5223)

This commit is contained in:
Axel Navarro 2021-02-11 14:11:41 -03:00 committed by GitHub
parent cb6f74dd28
commit e3444bf643
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,28 @@
# react-native start
> Command line tools to start the React Native server.
> More information: <https://github.com/react-native-community/cli/blob/master/docs/commands.md#start>.
- Start the server that communicates with connected devices:
`react-native start`
- Start the metro bundler with a clean cache:
`react-native start --reset-cache`
- Start the server in a custom port (defaults to 8081):
`react-native start --port {{3000}}`
- Start the server in verbose mode:
`react-native start --verbose`
- Specify the maximum number of workers for transforming files (default is the number of CPU cores):
`react-native start --max-workers {{count}}`
- Disable interactive mode:
`react-native start --no-interactive`