react-native start --port=8088 not wokring
The Metro bundler runs on port 8081. If another process is already using that port, you can either terminate that process, or change the port that the bundler uses.
Metro is a development platform for React Native. This project acts as a JavaScript bundler; it manages assets, caches builds and performs hot module reloading. Metro focuses on improving the developer experience for the React Native community.
I found the answer of this question. Actually my port 8081 is already running so need to use these command
lsof -i :8081
now you will get a list of Process id (PID) and you need to kill them with below command
kill -9 <PID>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With