process-killer-cli 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +2 -2
- /package/bin/{index.js → process-killer.js} +0 -0
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ Then follow the prompts:
|
|
|
41
41
|
|
|
42
42
|
### Kill Node.js Server
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
```bash
|
|
45
45
|
$ process-killer
|
|
46
46
|
|
|
47
47
|
Select your Operating System:
|
|
@@ -67,6 +67,7 @@ Do you want to kill this process? (y/n): y
|
|
|
67
67
|
|
|
68
68
|
You can now start your backend server on this port.
|
|
69
69
|
|
|
70
|
+
```
|
|
70
71
|
|
|
71
72
|
### Kill Java Application (Port 8080)
|
|
72
73
|
|
|
@@ -75,7 +76,7 @@ $ process-killer
|
|
|
75
76
|
...
|
|
76
77
|
Enter the port number you want to stop: 8080
|
|
77
78
|
✓ Port 8080 has been killed!
|
|
78
|
-
|
|
79
|
+
```
|
|
79
80
|
|
|
80
81
|
### Kill Python Flask (Port 5000)
|
|
81
82
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "process-killer-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A utility to safely find and kill processes using specific ports on Linux/macOS. Perfect for backend developers dealing with port conflicts.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"index.js": "./bin/
|
|
8
|
+
"index.js": "./bin/process-killer.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
File without changes
|