说我有一个使用node.js网络软件包的tcp服务器:
const s = net.createServer(conn => {});
s.listen(6969, '0.0.0.0', () => {
});
是否可以使用HTTP GET请求以某种方式访问服务器?也许http服务器可以在同一过程中使用相同的端口?
答案 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