Skip to content

Instantly share code, notes, and snippets.

@czy88840616
Created February 19, 2014 07:08
Show Gist options
  • Save czy88840616/9087374 to your computer and use it in GitHub Desktop.
Save czy88840616/9087374 to your computer and use it in GitHub Desktop.
get free port
var http = require('http');
function getPort (cb) {
var server = http.createServer();
server.listen(0);
server.on('listening', function() {
var port = server.address().port;
server.close();
cb(port);
});
}
module.exports = {
getPort: getPort
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment