You can bind to a random, free port assigned by the OS by specifying 0
for the port. This way you are not subject to race conditions (e.g. checking for an open port and some process binding to it before you get a chance to bind to it).
Then you can get the assigned port by calling server.address().port
.
Example:
var net = require('net');
var srv = net.createServer(function(sock) {
sock.end('Hello world
');
});
srv.listen(0, function() {
console.log('Listening on port ' + srv.address().port);
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…