process-killer-cli 1.0.5 → 1.0.7
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 -3
- package/bin/process-killer.js +5 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> A fast, cross-platform utility to safely kill processes using specific ports on Windows, macOS, and Linux.
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|

|
|
8
8
|
|
|
@@ -184,7 +184,7 @@ sudo fuser -k 3000/tcp
|
|
|
184
184
|
npm install -g process-killer-cli@latest
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
-
## 📝 What's New in v1.0.
|
|
187
|
+
## 📝 What's New in v1.0.7
|
|
188
188
|
|
|
189
189
|
- ✨ Fixed installation documentation
|
|
190
190
|
- 🎨 Beautiful colorized UI with Unicode borders
|
|
@@ -260,6 +260,6 @@ Have questions or suggestions? Open an issue on GitHub:
|
|
|
260
260
|
|
|
261
261
|
---
|
|
262
262
|
|
|
263
|
-
**Made with ❤️ for
|
|
263
|
+
**Made with ❤️ for Developers**
|
|
264
264
|
|
|
265
265
|
Happy coding! 🚀
|
package/bin/process-killer.js
CHANGED
|
@@ -67,7 +67,10 @@ function header() {
|
|
|
67
67
|
c("╔═══════════════════════════════════════════════════════╗", colors.cyan),
|
|
68
68
|
);
|
|
69
69
|
console.log(
|
|
70
|
-
c(
|
|
70
|
+
c(
|
|
71
|
+
" PROCESS KILLER UTILITY v1.0.1",
|
|
72
|
+
colors.bold + colors.cyan,
|
|
73
|
+
),
|
|
71
74
|
);
|
|
72
75
|
// console.log(c(" Tool By Milon", colors.yellow));
|
|
73
76
|
console.log(
|
|
@@ -151,7 +154,7 @@ function showDevInfo() {
|
|
|
151
154
|
);
|
|
152
155
|
console.log(
|
|
153
156
|
c("║", colors.cyan) +
|
|
154
|
-
c(" Tool
|
|
157
|
+
c(" Tool Process Killer CLI", colors.yellow).padEnd(54),
|
|
155
158
|
);
|
|
156
159
|
console.log(
|
|
157
160
|
c("║", colors.cyan) +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "process-killer-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
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",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/
|
|
28
|
+
"url": "https://github.com/devmilon923/process-killer-cli.git"
|
|
29
29
|
},
|
|
30
30
|
"bugs": {
|
|
31
|
-
"url": "https://github.com/
|
|
31
|
+
"url": "https://github.com/devmilon923/process-killer-cli/issues"
|
|
32
32
|
},
|
|
33
|
-
"homepage": "https://github.com/
|
|
33
|
+
"homepage": "https://github.com/devmilon923/process-killer-cli#readme",
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=12.0.0"
|
|
36
36
|
},
|