更多gulp經常使用插件使用請訪問:gulp經常使用插件彙總html
http-proxy-middleware這是一個用於後臺將請求轉發給其它服務器。其實這並非轉給gulp使用的,在其它構建工具也能夠用。web
更多使用文檔請點擊訪問http-proxy-middleware工具官網。ajax
例如:咱們當前主機A爲 http://localhost:3000/ , 如今瀏覽器發送一個請求,請求接口/api,這個請求的數據在另一臺服務器B上( http://www.example.org:4000 ) ,這時,就可經過在A主機設置代理,直接將請求發送給B主機。express
簡單實現代碼以下:npm
var express = require('express'); var proxy = require('http-proxy-middleware'); var app = express(); app.use('/api', proxy({target: 'http://www.example.org:4000', changeOrigin: true})); app.listen(3000);
說明:咱們利用express在3000端口啓動了一個小型的服務器,利用了app.use('/api', proxy({target: 'http://www.example.org:4000/', changeOrigin: true}))這句話,使發到3000端口的/api請求轉發到了4000端口。即請求http://localhost:3000/api 至關於請求 http://www.example.org:4000/api 。json
npm install --save-dev http-proxy-middleware
代理中間件配置。
proxy([context,] config)gulp
var proxy = require('http-proxy-middleware'); var apiProxy = proxy('/api', {target: 'http://www.example.org'}); // \____/ \_____________________________/ // | | // 須要轉發的請求 目標服務器
說明:第一個參數是能夠省略的。api
下邊示例是用Express構建的服務器中用法:數組
// 引用依賴 var express = require('express'); var proxy = require('http-proxy-middleware'); // proxy 中間件的選擇項 var options = { target: 'http://www.example.org', // 目標服務器 host changeOrigin: true, // 默認false,是否須要改變原始主機頭爲目標URL ws: true, // 是否代理websockets pathRewrite: { '^/api/old-path' : '/api/new-path', // 重寫請求,好比咱們源訪問的是api/old-path,那麼請求會被解析爲/api/new-path '^/api/remove/path' : '/path' // 同上 }, router: { // 若是請求主機 == 'dev.localhost:3000', // 重寫目標服務器 'http://www.example.org' 爲 'http://localhost:8000' 'dev.localhost:3000' : 'http://localhost:8000' } }; // 建立代理 var exampleProxy = proxy(options); // 使用代理 var app = express(); app.use('/api', exampleProxy); app.listen(3000);
下邊是一個完整地址劃分:瀏覽器
foo://example.com:8042/over/there?name=ferret#nose \_/ \_________________/\_________/ \_________/ \__/ | | | | | 協議 主機 路徑 查詢 碎片
第一個參數主要設置要代理的路徑,該參數具備以下用法:
1)能夠省略
2)能夠設置爲路徑字符串
3)能夠設置爲數組
4)能夠設置爲函數(自定義配置規則)
/** * @return {Boolean} */ var filter = function (pathname, req) { return (pathname.match('^/api') && req.method === 'GET'); }; var apiProxy = proxy(filter, {target: 'http://www.example.org'})
5)能夠設置爲通配符
細粒度的匹配可使用通配符匹配,Glob 匹配模式由 micromatch創造,訪問 micromatch or glob 查找更多用例。
proxy('**', {...})
匹配任何路徑,全部請求將被轉發;proxy('**/*.html', {...})
匹配任何以.html結尾的請求;proxy('/*.html', {...})
匹配當前路徑下以html結尾的請求;proxy('/api/**/*.html', {...})
匹配/api下以html爲結尾的請求;proxy(['/api/** ', '/ajax/**'], {...})
組合proxy(['/api/**', '!**/bad.json'], {...})
不包括 **/bad.json 。該接口是一個對象,裏邊包含的參數有以下:
// proxy 中間件的選擇項 var config= { target: 'http://www.example.org', // 目標服務器 host changeOrigin: true, // 默認false,是否須要改變原始主機頭爲目標URL ws: true, // 是否代理websockets pathRewrite: { '^/api/old-path' : '/api/new-path', // 重寫請求,好比咱們源訪問的是api/old-path,那麼請求會被解析爲/api/new-path '^/api/remove/path' : '/path' // 同上 }, router: { // 若是請求主機 == 'dev.localhost:3000', // 重寫目標服務器 'http://www.example.org' 爲 'http://localhost:8000' 'dev.localhost:3000' : 'http://localhost:8000' } }; // 建立代理 var exampleProxy = proxy(config);
1)target
用於設置目標服務器host。
2)changeOrigin
默認false,是否須要改變原始主機頭爲目標URL。
3)ws
設置是否代理websockets。
4)pathRewrite
重寫目標url路徑。
// 重寫 pathRewrite: {'^/old/api' : '/new/api'} // 移除 pathRewrite: {'^/remove/api' : ''} // 添加 pathRewrite: {'^/' : '/basepath/'} // 自定義 pathRewrite: function (path, req) { return path.replace('/api', '/base/api') }
5)router
重寫指定請求轉發目標。
// 使用主機或者路徑進行匹配,返回最早匹配到結果 // 因此配置的順序很重要 router: { 'integration.localhost:3000' : 'http://localhost:8001', // host only 'staging.localhost:3000' : 'http://localhost:8002', // host only 'localhost:3000/api' : 'http://localhost:8003', // host + path '/rest' : 'http://localhost:8004' // path only } // 自定義 router: function(req) { return 'http://localhost:8004'; }
http-proxy-middleware還提供了一些請求監聽事件。
// 監聽proxy的onerr事件 proxy.on('error', function (err, req, res) { res.writeHead(500, { 'Content-Type': 'text/plain' }); res.end('Something went wrong. And we are reporting a custom error message.'); });
proxy.on('proxyRes', function (proxyRes, req, res) { console.log('RAW Response from the target', JSON.stringify(proxyRes.headers, true, )); });
proxy.on('proxyReq', function onProxyReq(proxyReq, req, res) { proxyReq.setHeader('x-added', 'foobar'); });
function onProxyReqWs(proxyReq, req, socket, options, head) { proxyReq.setHeader('X-Special-Proxy-Header', 'foobar'); }
proxy.on('open', function (proxySocket) { proxySocket.on('data', hybiParseAndLogMessage); });
proxy.on('close', function (res, socket, head) { console.log('Client disconnected'); });