vmsan 0.1.0-alpha.12 → 0.1.0-alpha.14
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 +2 -2
- package/dist/_chunks/context.mjs +2375 -0
- package/dist/_chunks/create.mjs +53 -192
- package/dist/_chunks/download.mjs +2 -2
- package/dist/_chunks/errors.mjs +1 -1
- package/dist/_chunks/list.mjs +59 -55
- package/dist/_chunks/network.mjs +4 -5
- package/dist/_chunks/remove.mjs +8 -9
- package/dist/_chunks/start.mjs +15 -165
- package/dist/_chunks/stop.mjs +7 -8
- package/dist/_chunks/summary.mjs +69 -0
- package/dist/_chunks/upload.mjs +2 -2
- package/dist/_chunks/vm-state.mjs +29 -24
- package/dist/bin/cli.mjs +1 -1
- package/dist/index.d.mts +585 -436
- package/dist/index.mjs +31 -7
- package/package.json +6 -5
- package/dist/_chunks/cleanup.mjs +0 -334
- package/dist/_chunks/environment.mjs +0 -1144
- package/dist/_chunks/file-lock.mjs +0 -67
- package/dist/_chunks/image-rootfs.mjs +0 -331
- package/dist/_chunks/vm.mjs +0 -146
package/README.md
CHANGED
|
@@ -37,13 +37,13 @@ Firecracker microVM sandbox toolkit. Create, manage, and connect to isolated Fir
|
|
|
37
37
|
### 1. Install Firecracker, kernel, and rootfs
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
curl -fsSL https://
|
|
40
|
+
curl -fsSL https://vmsan.dev/install | bash
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
To uninstall:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
curl -fsSL https://
|
|
46
|
+
curl -fsSL https://vmsan.dev/install | bash -s -- --uninstall
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
This downloads and installs into `~/.vmsan/`:
|