@e2b/cli 1.3.4 → 1.4.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.
- package/README.md +10 -1
- package/dist/index.js +149 -149
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -8,6 +8,14 @@ This CLI tool allows you to build manager your running E2B sandbox and sandbox t
|
|
|
8
8
|
|
|
9
9
|
### 1. Install the CLI
|
|
10
10
|
|
|
11
|
+
**Using Homebrew (on macOS)**
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
brew install e2b
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Using NPM**
|
|
18
|
+
|
|
11
19
|
```bash
|
|
12
20
|
npm install -g @e2b/cli
|
|
13
21
|
```
|
|
@@ -18,7 +26,7 @@ npm install -g @e2b/cli
|
|
|
18
26
|
e2b auth login
|
|
19
27
|
```
|
|
20
28
|
|
|
21
|
-
> [!NOTE]
|
|
29
|
+
> [!NOTE]
|
|
22
30
|
> To authenticate without the ability to open the browser, provide
|
|
23
31
|
> `E2B_ACCESS_TOKEN` as an environment variable. Get your `E2B_ACCESS_TOKEN`
|
|
24
32
|
> from the Personal tab at [e2b.dev/dashboard](https://e2b.dev/dashboard). Then use the CLI like this:
|
|
@@ -28,4 +36,5 @@ e2b auth login
|
|
|
28
36
|
> Note the distinction between `E2B_ACCESS_TOKEN` and `E2B_API_KEY`.
|
|
29
37
|
|
|
30
38
|
### 3. Check out docs
|
|
39
|
+
|
|
31
40
|
Visit our [CLI documentation](https://e2b.dev/docs) to learn more.
|