@nocoo/eagle-agent 0.7.0 → 0.7.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 +4 -4
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,16 +6,16 @@ Read-only Herdr inventory, task evidence, machine resources and named TCP port c
|
|
|
6
6
|
|
|
7
7
|
Check `node --version`, `npm --version` and `herdr --version` first. Install Node.js 24+ from https://nodejs.org/en/download if needed, and have Herdr installed and running. No Eagle repository checkout, TypeScript compiler or npm login is required to install this public package.
|
|
8
8
|
|
|
9
|
-
Install Agent v0.7.
|
|
9
|
+
Install Agent v0.7.1 from npm. The Agent and Eagle website share the same release version:
|
|
10
10
|
|
|
11
11
|
```sh
|
|
12
|
-
npm install -g @nocoo/eagle-agent@0.7.
|
|
12
|
+
npm install -g @nocoo/eagle-agent@0.7.1 --registry=https://registry.npmjs.org
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
**If npm downloads time out, use the Tencent Cloud mirror / 下载超时时首选腾讯云镜像:**
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
|
-
npm install -g @nocoo/eagle-agent@0.7.
|
|
18
|
+
npm install -g @nocoo/eagle-agent@0.7.1 --registry=https://mirrors.cloud.tencent.com/npm/
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
`--registry` applies only to this installation; it does not change your global npm configuration. Mirrors may lag (`404` / `ETARGET`); retry later or use the official registry when reachable. Keep the pinned version, HTTPS and certificate verification. Eagle credentials are unrelated to npm and must never be sent to a registry.
|
|
@@ -23,7 +23,7 @@ npm install -g @nocoo/eagle-agent@0.7.0 --registry=https://mirrors.cloud.tencent
|
|
|
23
23
|
Verify the installation before configuring the agent:
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
|
-
eagle-agent --version # expected: 0.7.
|
|
26
|
+
eagle-agent --version # expected: 0.7.1
|
|
27
27
|
eagle-agent --help
|
|
28
28
|
```
|
|
29
29
|
|
package/dist/package.json
CHANGED