netprober 1.2.0 → 1.2.1

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.
Files changed (3) hide show
  1. package/README.md +23 -0
  2. package/images/1.png +0 -0
  3. package/package.json +11 -2
package/README.md CHANGED
@@ -20,6 +20,27 @@ DNS resolution · Port 443 · ICMP ping · HTTPS curl · CIDR sweep
20
20
 
21
21
  ## 📦 Installation
22
22
 
23
+ ### Via npm / pnpm / bun (global CLI)
24
+
25
+ ```bash
26
+ # npm
27
+ npm install -g netprober
28
+
29
+ # pnpm
30
+ pnpm add -g netprober
31
+
32
+ # bun
33
+ bun add -g netprober
34
+ ```
35
+
36
+ Then use it anywhere:
37
+
38
+ ```bash
39
+ netprober --help
40
+ ```
41
+
42
+ ---
43
+
23
44
  ### Run directly with Bun (no install)
24
45
 
25
46
  > Requires [Bun](https://bun.sh) — install it first
@@ -117,11 +138,13 @@ netprober -i targets.txt -o live.txt --output-ports open443.txt
117
138
  All files are written **in real time** as results come in — no waiting for the run to finish.
118
139
 
119
140
  ---
141
+
120
142
  ## Acknowledgements
121
143
 
122
144
  Provider list sourced from: [Expen1/MonPing](https://github.com/Expen1/MonPing/blob/ac17f7726aacb8d27f6181e9b12ea3d16f758320/monping.py#L53)
123
145
 
124
146
  ---
147
+
125
148
  ## 📄 License
126
149
 
127
150
  MIT © [maanimis](https://github.com/maanimis)
package/images/1.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netprober",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "author": "maanimis",
5
5
  "description": "Async host/IP prober — DNS resolution, port 443, ping, curl",
6
6
  "type": "module",
@@ -19,8 +19,17 @@
19
19
  "netprober": "dist/netprober.bundled.mjs"
20
20
  },
21
21
  "files": [
22
- "dist"
22
+ "dist",
23
+ "images"
23
24
  ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/maanimis/netprober.git"
28
+ },
29
+ "homepage": "https://github.com/maanimis/netprober",
30
+ "bugs": {
31
+ "url": "https://github.com/maanimis/netprober/issues"
32
+ },
24
33
  "engines": {
25
34
  "node": ">=18"
26
35
  },