Node.js的HTTP代理:node-http-proxy

jopen 10年前發布 | 218K 次閱讀 Node.js 開發 node-http-proxy

node-http-proxy是一個用于Node.js的HTTP可編程代理庫,支持 websockets。它是適用于實現例如代理服務器和負載均衡這樣的組件。
Node.js的HTTP代理:node-http-proxy

var http = require('http'),
    httpProxy = require('http-proxy');
//
// Create your proxy server and set the target in the options.
//
httpProxy.createProxyServer({target:'http://localhost:9000'}).listen(8000);

//
// Create your target server
//
http.createServer(function (req, res) {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.write('request successfully proxied!' + '\n' + JSON.stringify(req.headers, true, 2));
  res.end();
}).listen(9000);

項目主頁:http://www.baiduhome.net/lib/view/home/1402821332075

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!