- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
var net = require("net");
Array.from({ length: 1000 }, (x, i) => i).map(id => makeClient(id));
function makeClient(id) {
var client = net.createConnection({ host: "46.101.246.194", port: 80 }, () =>
console.log(`[${id}] connected`)
);
client.on("end", () => console.log(`[${id}] disconnect`));
return client;
}