本文主要是介绍react-native start ERROR Packager can't listen on port 8081,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
D:\rnworkspace\Hello>react-native startScanning 568 folders for symlinks in D:\rnworkspace\Hello\node_modules (41ms)
┌──────────────────────────────────────
──────────────────────────────────────┐
│ Running packager on port 8081.
│
│
│
│ Keep this packager running while developing on any JS projects. Feel
│
│ free to close this tab and run your own packager instance if you
│
│ prefer.
│
│
│
│ https://github.com/facebook/react-native
│
│
│
└──────────────────────────────────────
──────────────────────────────────────┘
Looking for JS files in
D:\rnworkspace\Hello
ERROR Packager can't listen on port 8081
Most likely another process is already using this port
Run the following command to find out which process:
lsof -n -i4TCP:8081
You can either shut down the other process:
kill -9 <PID>
or run packager on different port.
See http://facebook.github.io/react-native/docs/troubleshooting.html
for common problems and solutions.
解决:
1.修改监听借口 ,命令如 react-native start --port=8088
2.找到占用端口的进程,删除 查找命令如下:
netstat -ano
tasklist|findstr "2720" //2720 是PID
这篇关于react-native start ERROR Packager can't listen on port 8081的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!