@bifrost-proxy/bifrost 0.0.44-beta → 0.0.46-beta
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 +3 -6
- package/package.json +20 -13
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ npm i @bifrost-proxy/bifrost
|
|
|
51
51
|
启动代理:
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
bifrost start
|
|
54
|
+
bifrost start -d
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
启动后访问管理端:
|
|
@@ -60,11 +60,8 @@ bifrost start
|
|
|
60
60
|
http://127.0.0.1:9900/_bifrost/
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
```bash
|
|
66
|
-
bifrost start --intercept
|
|
67
|
-
```
|
|
63
|
+
## 用不习惯 CLI?想要使用桌面端 APP?
|
|
64
|
+
请直接到[releases](https://github.com/bifrost-proxy/bifrost/releases)中下载对应平台的桌面端程序
|
|
68
65
|
|
|
69
66
|
## 基本用法摘要
|
|
70
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifrost-proxy/bifrost",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.46-beta",
|
|
4
4
|
"description": "High-performance HTTP/HTTPS/SOCKS5 proxy server written in Rust",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -10,13 +10,20 @@
|
|
|
10
10
|
"homepage": "https://github.com/bifrost-proxy/bifrost",
|
|
11
11
|
"keywords": [
|
|
12
12
|
"proxy",
|
|
13
|
+
"bifrost",
|
|
14
|
+
"whistle",
|
|
15
|
+
"charles",
|
|
16
|
+
"fiddler",
|
|
17
|
+
"mitmproxy",
|
|
18
|
+
"postman",
|
|
13
19
|
"http",
|
|
14
|
-
"https",
|
|
15
20
|
"socks5",
|
|
16
|
-
"
|
|
21
|
+
"websocket",
|
|
17
22
|
"mitm",
|
|
23
|
+
"capture",
|
|
24
|
+
"mock",
|
|
18
25
|
"network",
|
|
19
|
-
"
|
|
26
|
+
"devtools"
|
|
20
27
|
],
|
|
21
28
|
"bin": {
|
|
22
29
|
"bifrost": "bin/bifrost"
|
|
@@ -32,14 +39,14 @@
|
|
|
32
39
|
"README.md"
|
|
33
40
|
],
|
|
34
41
|
"optionalDependencies": {
|
|
35
|
-
"@bifrost-proxy/bifrost-linux-x64": "0.0.
|
|
36
|
-
"@bifrost-proxy/bifrost-linux-arm64": "0.0.
|
|
37
|
-
"@bifrost-proxy/bifrost-linux-arm": "0.0.
|
|
38
|
-
"@bifrost-proxy/bifrost-linux-x64-musl": "0.0.
|
|
39
|
-
"@bifrost-proxy/bifrost-linux-arm64-musl": "0.0.
|
|
40
|
-
"@bifrost-proxy/bifrost-darwin-x64": "0.0.
|
|
41
|
-
"@bifrost-proxy/bifrost-darwin-arm64": "0.0.
|
|
42
|
-
"@bifrost-proxy/bifrost-win32-x64": "0.0.
|
|
43
|
-
"@bifrost-proxy/bifrost-win32-arm64": "0.0.
|
|
42
|
+
"@bifrost-proxy/bifrost-linux-x64": "0.0.46-beta",
|
|
43
|
+
"@bifrost-proxy/bifrost-linux-arm64": "0.0.46-beta",
|
|
44
|
+
"@bifrost-proxy/bifrost-linux-arm": "0.0.46-beta",
|
|
45
|
+
"@bifrost-proxy/bifrost-linux-x64-musl": "0.0.46-beta",
|
|
46
|
+
"@bifrost-proxy/bifrost-linux-arm64-musl": "0.0.46-beta",
|
|
47
|
+
"@bifrost-proxy/bifrost-darwin-x64": "0.0.46-beta",
|
|
48
|
+
"@bifrost-proxy/bifrost-darwin-arm64": "0.0.46-beta",
|
|
49
|
+
"@bifrost-proxy/bifrost-win32-x64": "0.0.46-beta",
|
|
50
|
+
"@bifrost-proxy/bifrost-win32-arm64": "0.0.46-beta"
|
|
44
51
|
}
|
|
45
52
|
}
|