1 Star 0 Fork 0

小农民老霍儿/mc-proxy-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 701 Bytes
一键复制 编辑 原始数据 按行查看 历史
小农民老霍儿 提交于 2024-10-21 14:02 . chore: up
const http = require('http');
const httpProxy = require('http-proxy');
const dotenv = require('dotenv')
const result = dotenv.config()
if (result.error) {
throw result.error
}
const { PORT, TARGET } = result.parsed
console.log(`proxy target: ${TARGET}`)
// 创建一个代理服务器实例,并配置目标服务器的地址
const proxy = httpProxy.createProxyServer({
target: TARGET,
changeOrigin:true
});
// 创建一个 HTTP 服务器,并在请求到达时触发代理服务器的转发
const server = http.createServer((req, res) => {
proxy.web(req, res);
});
const port = PORT || 3000;
server.listen(port, () => {
console.log(`Proxy server is running on port ${port}`);
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huoxiangdong_farmer/mc-proxy-server.git
[email protected]:huoxiangdong_farmer/mc-proxy-server.git
huoxiangdong_farmer
mc-proxy-server
mc-proxy-server
huoxiangdong

搜索帮助