infynon 0.2.0-beta.6.1 → 0.2.0-beta.6.3

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 (2) hide show
  1. package/README.md +130 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,130 @@
1
+ # INFYNON
2
+
3
+ **Network Firewall & Dependency Security Manager**
4
+
5
+ Real-time reverse proxy WAF with TUI dashboard + pre-install CVE verification for 14 ecosystems.
6
+
7
+ [![npm](https://img.shields.io/npm/v/infynon?style=flat-square&logo=npm)](https://www.npmjs.com/package/infynon)
8
+ [![License: MIT](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/d4rkNinja/infynon-cli/blob/main/LICENSE)
9
+ [![GitHub](https://img.shields.io/badge/source-GitHub-black?style=flat-square&logo=github)](https://github.com/d4rkNinja/infynon-cli)
10
+
11
+ > AI generates code, installs packages — you don't know what's compromised.
12
+ > **INFYNON catches it before it touches your system.**
13
+
14
+ ---
15
+
16
+ ## Install
17
+
18
+ ```bash
19
+ npm install -g infynon
20
+ ```
21
+
22
+ Downloads the right pre-built native binary for your OS and architecture automatically. Requires Node.js 14+.
23
+
24
+ **Supported platforms:** Windows x64 · Linux x64 · Linux ARM64 · macOS x64 · macOS ARM64
25
+
26
+ To uninstall and clean up all config files:
27
+
28
+ ```bash
29
+ npm uninstall -g infynon
30
+ ```
31
+
32
+ ---
33
+
34
+ ## What is INFYNON?
35
+
36
+ A single binary with two modes:
37
+
38
+ ### 1. `infynon pkg` — Package Security
39
+
40
+ Intercepts install commands across **14 ecosystems** and runs a 3-layer CVE check before anything touches your disk.
41
+
42
+ ```bash
43
+ # Scan your project's lock files for CVEs
44
+ infynon pkg scan
45
+
46
+ # Secure install — intercepts and checks before running npm
47
+ infynon pkg npm install express
48
+
49
+ # Works with any ecosystem
50
+ infynon pkg cargo add serde
51
+ infynon pkg pip install requests
52
+ infynon pkg yarn add lodash
53
+
54
+ # Auto-fix all vulnerable dependencies
55
+ infynon pkg fix --auto
56
+
57
+ # Deep audit with full dependency tree
58
+ infynon pkg audit
59
+
60
+ # Strict mode — fail build on any vulnerability (great for CI)
61
+ infynon pkg --strict npm install express
62
+ ```
63
+
64
+ **Ecosystems:** npm · yarn · pnpm · bun · pip · uv · poetry · cargo · go · gem · composer · nuget · hex · pub
65
+
66
+ ### 2. `infynon` — Network Firewall
67
+
68
+ A reverse proxy WAF with a real-time TUI dashboard. Sits between the internet and your backend.
69
+
70
+ ```bash
71
+ # Initialize config
72
+ infynon init --port 8080 --upstream-port 3000
73
+
74
+ # Start firewall with TUI dashboard
75
+ infynon start
76
+
77
+ # Start headless (no TUI — for servers)
78
+ infynon start --headless
79
+
80
+ # Block an IP
81
+ infynon block 203.0.113.50
82
+
83
+ # View blocked requests
84
+ infynon logs --verdict block
85
+ ```
86
+
87
+ **Protects against:** SQL injection · XSS · path traversal · command injection · header injection · rate abuse · bad IPs
88
+
89
+ ---
90
+
91
+ ## How It Works (Package Security)
92
+
93
+ 1. You (or an AI tool) runs `infynon pkg npm install express`
94
+ 2. INFYNON resolves the full dependency tree
95
+ 3. Queries **OSV.dev** for known CVEs across all packages
96
+ 4. Presents an interactive decision for any vulnerable package — block, skip, or install a fixed version
97
+ 5. Only approved packages get installed
98
+
99
+ ---
100
+
101
+ ## More Commands
102
+
103
+ | Command | Description |
104
+ |---------|-------------|
105
+ | `infynon pkg scan` | Scan lock files for CVEs |
106
+ | `infynon pkg fix --auto` | Auto-upgrade all vulnerable deps |
107
+ | `infynon pkg audit` | Full dependency tree with CVE annotations |
108
+ | `infynon pkg why <pkg>` | Trace why a package is in your tree |
109
+ | `infynon pkg outdated` | Find outdated deps across all ecosystems |
110
+ | `infynon pkg diff <pkg> v1 v2` | Compare versions: size, deps, CVEs |
111
+ | `infynon pkg doctor` | Health check: dupes, unused, phantoms |
112
+ | `infynon pkg size <pkg>` | Install weight and transitive dep count |
113
+ | `infynon pkg search <query>` | Cross-ecosystem package search |
114
+ | `infynon pkg clean` | Remove unused dependencies |
115
+ | `infynon pkg migrate <from> <to>` | Migrate between package managers |
116
+ | `infynon pkg eagle-eye setup` | Set up scheduled CVE monitoring with email alerts |
117
+
118
+ ---
119
+
120
+ ## Full Documentation
121
+
122
+ **[cli.infynon.com/docs](https://cli.infynon.com/docs)**
123
+
124
+ Source: [github.com/d4rkNinja/infynon-cli](https://github.com/d4rkNinja/infynon-cli)
125
+
126
+ ---
127
+
128
+ ## License
129
+
130
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infynon",
3
- "version": "0.2.0-beta.6.1",
3
+ "version": "0.2.0-beta.6.3",
4
4
  "description": "Universal package security manager & network firewall — intercepts installs across npm, pip, cargo, go, gem and more with 3-layer CVE verification, plus a real-time reverse proxy WAF with TUI dashboard",
5
5
  "bin": {
6
6
  "infynon": "./run.js",
@@ -37,5 +37,5 @@
37
37
  "bugs": {
38
38
  "url": "https://github.com/d4rkNinja/infynon-cli/issues"
39
39
  },
40
- "homepage": "https://github.com/d4rkNinja/infynon-cli#readme"
40
+ "homepage": "https://cli.infynon.com/docs"
41
41
  }