eggjs / egg

🥚 Born to build better enterprise frameworks and apps with Node.js & Koa
https://eggjs.org
MIT License
18.9k stars 1.82k forks source link

如何让 httpclient 支持http2? #4008

Open bhb4157 opened 5 years ago

bhb4157 commented 5 years ago

最近需要让项目支持http2, 不知道在egg上面有没有方法支持?

fengmk2 commented 5 years ago

你是要实现 http2 client 发请求?还是 http2 server 接受请求呢?

bhb4157 commented 5 years ago

是服务端接收http2请求。

scott-leung commented 5 years ago

我们在做法是在负载均衡器上做支持就好了。

scott-leung commented 5 years ago

如果要让egg支持的话,应该在egg-cluster模块中,将相应的createServer方法做一下修改应该就可以了。

bhb4157 commented 5 years ago

我都尝试下,多谢各位的回答!

shiny commented 4 years ago

你是要实现 http2 client 发请求?还是 http2 server 接受请求呢?

@fengmk2 请问 egg.js 内置的 HttpClient (app.curl)是否支持 h/2?

fengmk2 commented 4 years ago

你是要实现 http2 client 发请求?还是 http2 server 接受请求呢?

@fengmk2 请问 egg.js 内置的 HttpClient (app.curl)是否支持 h/2?

HttpClient 目前是不支持的,我们可以尝试实现一下。

dsonet commented 4 years ago

@fengmk2 能否通过增加配置开关比如, http2,来实现server支持HTTP2协议呢.