使用浏览器GET请求命中TCP服务器

时间:2019-03-08 23:20:49

标签: node.js http tcp

说我有一个使用node.js网络软件包的tcp服务器:

 const s = net.createServer(conn => {});

 s.listen(6969, '0.0.0.0', () => {

 });

是否可以使用HTTP GET请求以某种方式访问​​服务器?也许http服务器可以在同一过程中使用相同的端口?

1 个答案:

答案 0 :(得分:1)

对于HTTP连接,请使用telnet连接到端口-并发送HTTP命令

https://superuser.com/questions/933346/how-does-one-browse-a-website-using-telnet

对于HTTPS连接,请使用openssl s_client

https://www.feistyduck.com/library/openssl-cookbook/online/ch-testing-with-openssl.html