@bifrost-proxy/bifrost 0.0.110 → 0.0.112
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 +18 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -23,19 +23,36 @@ Bifrost 是一个用 Rust 编写的高性能,AI 友好的代理服务器,灵
|
|
|
23
23
|
|
|
24
24
|
方法一:使用脚本安装
|
|
25
25
|
|
|
26
|
+
macOS / Linux / Git Bash:
|
|
27
|
+
|
|
26
28
|
```bash
|
|
27
29
|
curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash
|
|
28
30
|
```
|
|
29
31
|
|
|
32
|
+
Windows PowerShell:
|
|
33
|
+
|
|
34
|
+
```powershell
|
|
35
|
+
irm https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.ps1 | iex
|
|
36
|
+
```
|
|
37
|
+
|
|
30
38
|
该脚本默认会继续安装并信任 CA 证书、安装所有 Bifrost AI skills,并以后台服务启动 Bifrost;安装完成后可直接访问管理端。
|
|
31
|
-
Bash 与 PowerShell 安装脚本都会自动探测 GitHub 直连和内置镜像源,优先使用最快可用的 release 下载地址;受限网络中也可通过 `BIFROST_GITHUB_MIRROR` 指定优先镜像。
|
|
39
|
+
Bash 与 PowerShell 安装脚本都会自动探测 GitHub 直连和内置镜像源,优先使用最快可用的 release 下载地址;受限网络中也可通过 `BIFROST_GITHUB_MIRROR` 指定优先镜像。Windows PowerShell 脚本会把安装目录加入当前会话和 Windows 用户 `Path`;Git Bash 脚本在 Windows 下也会同步写入 Windows 用户 `Path`,新打开的 PowerShell/CMD 可直接执行 `bifrost`。
|
|
32
40
|
|
|
33
41
|
安装指定版本
|
|
34
42
|
|
|
43
|
+
macOS / Linux / Git Bash:
|
|
44
|
+
|
|
35
45
|
```bash
|
|
36
46
|
curl -fsSL https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.sh | bash -s -- --version v0.0.96
|
|
37
47
|
```
|
|
38
48
|
|
|
49
|
+
Windows PowerShell:
|
|
50
|
+
|
|
51
|
+
```powershell
|
|
52
|
+
$installer = irm https://raw.githubusercontent.com/bifrost-proxy/bifrost/main/install-binary.ps1
|
|
53
|
+
& ([scriptblock]::Create($installer)) -Version v0.0.96
|
|
54
|
+
```
|
|
55
|
+
|
|
39
56
|
方法二:使用 npm 安装
|
|
40
57
|
|
|
41
58
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifrost-proxy/bifrost",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.112",
|
|
4
4
|
"description": "High-performance HTTP/HTTPS/SOCKS5 proxy server written in Rust",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"README.md"
|
|
41
41
|
],
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@bifrost-proxy/bifrost-linux-x64": "0.0.
|
|
44
|
-
"@bifrost-proxy/bifrost-linux-arm64": "0.0.
|
|
45
|
-
"@bifrost-proxy/bifrost-linux-arm": "0.0.
|
|
46
|
-
"@bifrost-proxy/bifrost-linux-x64-musl": "0.0.
|
|
47
|
-
"@bifrost-proxy/bifrost-linux-arm64-musl": "0.0.
|
|
48
|
-
"@bifrost-proxy/bifrost-darwin-x64": "0.0.
|
|
49
|
-
"@bifrost-proxy/bifrost-darwin-arm64": "0.0.
|
|
50
|
-
"@bifrost-proxy/bifrost-win32-x64": "0.0.
|
|
51
|
-
"@bifrost-proxy/bifrost-win32-arm64": "0.0.
|
|
43
|
+
"@bifrost-proxy/bifrost-linux-x64": "0.0.112",
|
|
44
|
+
"@bifrost-proxy/bifrost-linux-arm64": "0.0.112",
|
|
45
|
+
"@bifrost-proxy/bifrost-linux-arm": "0.0.112",
|
|
46
|
+
"@bifrost-proxy/bifrost-linux-x64-musl": "0.0.112",
|
|
47
|
+
"@bifrost-proxy/bifrost-linux-arm64-musl": "0.0.112",
|
|
48
|
+
"@bifrost-proxy/bifrost-darwin-x64": "0.0.112",
|
|
49
|
+
"@bifrost-proxy/bifrost-darwin-arm64": "0.0.112",
|
|
50
|
+
"@bifrost-proxy/bifrost-win32-x64": "0.0.112",
|
|
51
|
+
"@bifrost-proxy/bifrost-win32-arm64": "0.0.112"
|
|
52
52
|
}
|
|
53
53
|
}
|