Created
May 23, 2019 04:06
-
-
Save usrbowe/7657229f9683dbf115533b2d712407ab to your computer and use it in GitHub Desktop.
Kill background running packager for React Native
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find process running with port 8081 and later kill it. | |
# Tested on Mac OSx (should work on all unix based os as well) | |
kill $(lsof -t -i :8081) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment