image proxy server
1.0.0
该存储库包含一个使用 Node.js 和 Express.js 构建的简单image proxy server 。服务器允许您通过提供图像 URL 作为查询参数来从远程 URL 获取和提供图像。它检索图像,设置适当的 Content-Type 标头,并将图像数据作为响应进行流式传输。
确保您的系统上安装了 Node.js。
克隆此存储库:
git clone https://github.com/spidirman/image-proxy-server.git
安装依赖项:
npm install express axios
启动服务器:
cd image-proxy-server
node server.js
使用图像 URL 作为查询参数向 /image 端点发送 GET 请求:
GET /image?url=https://example.com/image.jpg
服务器将获取图像,设置适当的 Content-Type 标头,并将图像数据作为响应进行流式传输。
欢迎贡献!如果您发现任何问题或有改进建议,请提出问题或提交拉取请求。
请注意,此应用程序仅供教育和个人使用。使用外部来源的图像时,请确保尊重版权和使用权。