node实现简单的反向代理服务器

每当提起反向代理器,人们通常一想到的就是 Nginx,但是今天我们暂时忽略大名鼎鼎的 Nginx,采用同样也是使用单线程、事件循环的服务端小弟——Node 来达成

跨域问题是前端开发很常见的问题

解决方案有很多种

jsonp返回

Access-Control-Allow-Origin:'*' (需要注意的是 对于post请求会变成option请求需求后端支持)

前端添加代理

前端添加代理

以vue-cli为例,前端添加代理

dev: { env: require('./dev.env'), port: 8888, autoOpenBrowser: true, assetsSubDirectory: 'static', assetsPublicPath: 'https://www.jb51.net/', proxyTable: { '/api':{ target: 'http://localhost:3000', changeOrigin: true, } }

其中'/api'为接口的前缀,target为后端服务地址

前端请求示例

vm.$http.post('/api/reg', JSON.stringify(info)).then(() => { }, () => { });

反向代理

反向代理可以理解为指定一个服务地址为内部服务器地址。

为什么需要反向代理

如果只是作为接口请求,其前端搭建代理服务器就可以了,但是代理服务器并不能满足所有的日常开发。

比如说单点登录的现,需求服务端做302跳转。但是前端文件没有部署到后端服务器时,set-cookie是不能成功种下cookie登录信息的。

这就需要在后端服务器添加反向代理。

示例如下

const http = require('http'); const httpProxy = require('http-proxy'); const proxy = httpProxy.createProxyServer(); const proxyServer = http.createServer((req, res) => { proxy.web(req, res, { target: 'http://localhost:8888', }); }); proxyServer.listen(8088, () => { console.log('proxy server is running '); });

这样前端开发就可以在8088端口了,当然热加载功能是在前端服务器的8888端口

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyjgdp.html