Last active
April 19, 2024 11:51
-
-
Save timoxley/1689041 to your computer and use it in GitHub Desktop.
check if a port is being used with nodejs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var isPortTaken = function(port, fn) { | |
var net = require('net') | |
var tester = net.createServer() | |
.once('error', function (err) { | |
if (err.code != 'EADDRINUSE') return fn(err) | |
fn(null, true) | |
}) | |
.once('listening', function() { | |
tester.once('close', function() { fn(null, false) }) | |
.close() | |
}) | |
.listen(port) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@tysonrm – nice technique! FYI, there's an extra
)
when making thecheckPort()
example.