glass-connect 0.2.0 → 1.0.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 +20 -5
- package/dist/cli.js +8847 -8429
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
# Glass Connect
|
|
2
2
|
|
|
3
|
-
Glass Connect
|
|
4
|
-
|
|
5
|
-
From the folder you want to use with Glass, run:
|
|
3
|
+
Glass Connect pairs a computer privately to a Glass account. It does not register folders, bind a
|
|
4
|
+
Project, or share the computer with an organization.
|
|
6
5
|
|
|
7
6
|
```sh
|
|
8
7
|
npx glass-connect@latest
|
|
9
8
|
```
|
|
10
9
|
|
|
11
|
-
|
|
10
|
+
The command opens a host-bound Glass pairing link. If the link is opened in a different Glass
|
|
11
|
+
environment, that environment cannot approve the challenge. You can select the preview backend
|
|
12
|
+
explicitly:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npx glass-connect@latest --environment preview
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
The command installs a per-user background service on macOS, Windows, and Linux, including a
|
|
19
|
+
private copy of its Node runtime. Use `glass-connect update` to replace that service with the exact
|
|
20
|
+
version you installed. Use `glass-connect status`, `stop`, `start`, or `uninstall` to manage it.
|
|
21
|
+
|
|
22
|
+
For a pinned update, use the exact published version:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
npx glass-connect@1.0.0 update
|
|
26
|
+
```
|
|
12
27
|
|
|
13
|
-
Glass Connect requires Node.js 24.13.1 or newer.
|
|
28
|
+
Glass Connect requires Node.js 24.13.1 or newer for installation.
|