1 2 3 4 5 6 7 8 9 10 11
import * as net from "node:net"; const socket = net.connect({ port: 80, host: "localhost", }); socket.connect({ port: 80, host: "localhost", });