Reputation: 77
I'm using react-native latest version and get the following error:
How can I resolve this error? Thanks!
Upvotes: 3
Views: 6349
Reputation: 484
This is because the port is being used by another process.Simple solution for this problem.
It will work like a charm
Upvotes: 2
Reputation: 487
Try this:
lsof -i :8081
kill -9 PID_FROM_ABOVE
react-native start
.....
Upvotes: 10