@ziuus/vanta 0.7.5 → 0.10.0
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 +47 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ npm install -g @ziuus/vanta && vanta
|
|
|
57
57
|
**One-liner, no install:**
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx @ziuus/vanta
|
|
60
|
+
npx @ziuus/vanta@latest
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
### Requirements
|
|
@@ -193,6 +193,52 @@ matrix = true
|
|
|
193
193
|
video = true
|
|
194
194
|
```
|
|
195
195
|
|
|
196
|
+
## WASM Extensions (v0.10+)
|
|
197
|
+
|
|
198
|
+
Vanta is extensible through runtime WASM extensions. You can install completely new UI panels and capabilities created by the community *without* recompiling Vanta.
|
|
199
|
+
|
|
200
|
+
### 1. Discover Extensions
|
|
201
|
+
Search the community registry (hosted via the [vanta-integrations](https://github.com/ziuus/vanta-integrations) repo):
|
|
202
|
+
```bash
|
|
203
|
+
vanta search
|
|
204
|
+
```
|
|
205
|
+
```text
|
|
206
|
+
Vanta Extensions (API v0.9.1)
|
|
207
|
+
|
|
208
|
+
security Vanta Security
|
|
209
|
+
Live CVE security feeds and threat monitoring.
|
|
210
|
+
v0.1.0 (API v0.9.0) by Community
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
### 2. Install & Verify
|
|
214
|
+
Install an extension. Vanta will securely download the `.wasm` artifact, verify its **SHA-256 checksum**, check API compatibility, and place it in your local extensions folder:
|
|
215
|
+
```bash
|
|
216
|
+
vanta install security
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
> 🔒 **Security Notice**: Extensions are sandboxed by default. Currently, extensions are granted UI and Configuration access, but are denied Network, Filesystem, and Process execution capabilities.
|
|
220
|
+
|
|
221
|
+
### 3. Enable in Config
|
|
222
|
+
Enable the extension so Vanta loads it on startup:
|
|
223
|
+
```bash
|
|
224
|
+
vanta enable security
|
|
225
|
+
```
|
|
226
|
+
It will automatically append to the `enabled` array in your `~/.config/vanta/config.toml`.
|
|
227
|
+
|
|
228
|
+
Start Vanta (`vanta`) and the new panel will appear in your dashboard!
|
|
229
|
+
|
|
230
|
+
### Custom Pages (No Code Required)
|
|
231
|
+
You can still build custom views natively with flexible grid layouts by defining `[[pages]]` in your config:
|
|
232
|
+
|
|
233
|
+
```toml
|
|
234
|
+
[[pages]]
|
|
235
|
+
name = "DevOps"
|
|
236
|
+
layout = [
|
|
237
|
+
["system", "network"],
|
|
238
|
+
["processes", "clock"]
|
|
239
|
+
]
|
|
240
|
+
```
|
|
241
|
+
|
|
196
242
|
## Custom Widgets
|
|
197
243
|
|
|
198
244
|
Add your own data panels to the Dashboard without recompiling Vanta.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziuus/vanta",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Aesthetic Rust TUI system dashboard — CPU, memory, disk, network, GPU, processes, now-playing, clock, file manager, notes and visualizer in one terminal pane",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vanta": "bin/vanta.js"
|