1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 07:15:23 +02:00
tldr/pages/common/react-native-start.md
Managor 23340cc6e0
common/*: reduce usage of "command-line" (part 1) (#16949)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:48:18 +03:00

28 lines
712 B
Markdown

# react-native start
> Start the React Native server.
> More information: <https://github.com/facebook/react-native/tree/main/packages/community-cli-plugin#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`