是的我已阅读此内容但仍不知道如何使其正常运行。 react native - Port 8081 already in use, packager is either not running or not running correctly Command /bin/sh failed with exit code 2
最初我是这样做的
1. react-native init Hello
2. react-native run-ios
然后点击“已使用的端口8081”。
读过反应文档https://facebook.github.io/react-native/docs/troubleshooting.html
1. cannot kill the process using 8081, it keeps on coming back,
and i don't want to kill it
2. react-native start --port=8088
3. update node_modules/react-
native/React/React.xcodeproj/project.pbxproj file. Did it.
我应该在哪里和哪个步骤“react-native start --port = 8088”?
顺便说一下,我是一名普通的工程师,但是如果我不能在2小时内运行第一个反应本机样本,我就看不出它是如何飞行的,这非常烦人。答案 0 :(得分:5)
在RN 0.55中,您可以通过以下方式解决此问题:
react-native start --port=1234
然后在另一个窗口中:
react-native run-ios --port 1234
版本:
✗ react-native --version
react-native-cli: 2.0.1
react-native: 0.55.4
答案 1 :(得分:0)
在package.json中的yarn受管项目中
"scripts": {
...
"ios": "npx react-native run-ios --port 19001 && npx react-native start --port 19001",
"android": "npx react-native run-android --port 19001 && npx react-native start --port 19001",
}