7 个版本
0.1.3 | 2024 年 5 月 22 日 |
---|---|
0.1.2 | 2023 年 6 月 3 日 |
0.1.1 | 2023 年 4 月 24 日 |
0.1.0 | 2023 年 2 月 27 日 |
0.0.2 | 2022 年 11 月 23 日 |
#480 in Web 编程
每月 53 次下载
用于 localtunnel
21KB
478 行
Localtunnel
Localtunnel 将您的本地主机端点暴露给世界,用例包括
- API 测试
- 多设备访问单个数据存储
- 对等连接,NAT 洞穿问题的解决方案。
客户端使用
已知问题: 公共代理服务器不可用,请设置您自己的服务器。
在 CLI 中使用
cargo install localtunnel
localtunnel client --host https://init.so --subdomain kaichao --port 3000
作为 Rust 库使用
cargo add localtunnel-client
use localtunnel_client::{open_tunnel, broadcast, ClientConfig};
let (notify_shutdown, _) = broadcast::channel(1);
let config = ClientConfig {
server: Some("https://init.so".to_string()),
subdomain: Some("demo".to_string()),
local_host: Some("localhost".to_string()),
local_port: 3000,
shutdown_signal: notify_shutdown.clone(),
max_conn: 10,
credential: None,
};
let result = open_tunnel(config).await?;
// Shutdown the background tasks by sending a signal.
let _ = notify_shutdown.send(());
服务器使用
在 CLI 中使用
localtunnel server --domain init.so --port 3000 --proxy-port 3001 --secure
作为 Rust 库使用,
cargo install localtunnel-server
use localtunnel_server::{start, ServerConfig};
let config = ServerConfig {
domain: "init.so".to_string(),
api_port: 3000,
secure: true,
max_sockets: 10,
proxy_port: 3001,
require_auth: false,
};
start(config).await?
赞助
请帮助我构建 OSS 👉 GitHub Sponsors
资源
依赖项
~20–36MB
~680K SLoC