@cortexlabs/forge 0.1.0-alpha.1 → 0.1.0-alpha.2
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 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,20 +4,23 @@ Forge is a local engineering terminal backed by the Forge platform.
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Forge requires Node.js 20 or newer. Install the current prerelease globally:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
npm install -g @cortexlabs/forge@next
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Verify the installation:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
forge --help
|
|
14
17
|
forge doctor
|
|
15
18
|
```
|
|
16
19
|
|
|
17
|
-
|
|
20
|
+
You can also run Forge without installing it globally:
|
|
18
21
|
|
|
19
22
|
```bash
|
|
20
|
-
|
|
23
|
+
npx @cortexlabs/forge@next --help
|
|
21
24
|
```
|
|
22
25
|
|
|
23
26
|
## Start
|