sandbox 2.0.4 → 2.2.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 +6 -4
- package/dist/{app-Be0xsoIH.mjs → app-BNIol84k.mjs} +483 -335
- package/dist/app-BNIol84k.mjs.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/pty-server-linux-x86_64 +0 -0
- package/dist/sandbox.mjs +12 -2
- package/dist/sandbox.mjs.map +1 -1
- package/package.json +10 -4
- package/dist/app-Be0xsoIH.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# Vercel Sandbox CLI
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Read the full documentation at [vercel.com/docs/vercel-sandbox/cli-reference](https://vercel.com/docs/vercel-sandbox/cli-reference).
|
|
3
|
+
Vercel Sandbox allows you to run arbitrary code in isolated, ephemeral Linux
|
|
4
|
+
VMs. View the documentation [here](https://vercel.com/docs/vercel-sandbox).
|
|
6
5
|
|
|
7
6
|
## Packages
|
|
8
7
|
|
|
@@ -18,7 +17,10 @@ pnpm i -g sandbox
|
|
|
18
17
|
## Usage
|
|
19
18
|
|
|
20
19
|
```bash
|
|
21
|
-
sandbox
|
|
20
|
+
sandbox login # If you are not already logged in with the Vercel CLI
|
|
21
|
+
sandbox create --connect # Create a new sandbox and open an interactive shell
|
|
22
22
|
sandbox ls # List your sandboxes
|
|
23
23
|
sandbox --help # View all commands
|
|
24
24
|
```
|
|
25
|
+
|
|
26
|
+
Learn more about the CLI in the [documentation](https://vercel.com/docs/vercel-sandbox/cli-reference).
|