TipicoDev
TipicoDev
@roddone Nice! You can count on me for testing this. I guess it makes sense to set startingPort with a default value of 5000, or something around that.
> Why port 5000 specifically ? > > I was thinking of setting default port to 0, so it could take the first available port. Usually the initial ports are...
@samuraitruong here's a simple test I made using net: Starting the TCP Server ```js const server = net.createServer(); server.listen(port, host, () => { console.log('TCP Server is running'); }); server.on('connection', function(sock)...