1.0.0 • Published 8 years ago

react-native-kill-packager v1.0.0

Weekly downloads
924
License
MIT
Repository
github
Last release
8 years ago

💣 react-native-kill-packager

Kill the React Native Packager running on port 8081.

Simply run react-native-kill-packager when you encounter this:

  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.

You can add it as an npm script and run npm run packager:kill or npm run packager:restart:

"scripts": {
  "packager:kill": "react-native-kill-packager",
  "packager:restart": "react-native-kill-packager; npm start",
};

Installation

npm install --save-dev react-native-kill-packager

Credits

Livio Bieri 🚀