-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.js
46 lines (37 loc) · 1.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'use strict'
const sh = require('shell-exec')
module.exports = function (port, method = 'tcp') {
port = Number.parseInt(port)
if (!port) {
return Promise.reject(new Error('Invalid port number provided'))
}
if (process.platform === 'win32') {
return sh('netstat -nao')
.then(res => {
const { stdout } = res
if (!stdout) return res
const lines = stdout.split('\n')
// The second white-space delimited column of netstat output is the local port,
// which is the only port we care about.
// The regex here will match only the local port column of the output
const lineWithLocalPortRegEx = new RegExp(`^ *${method.toUpperCase()} *[^ ]*:${port}`, 'gm')
const linesWithLocalPort = lines.filter(line => line.match(lineWithLocalPortRegEx))
const pids = linesWithLocalPort.reduce((acc, line) => {
const match = line.match(/(\d*)\w*(\n|$)/gm)
return match && match[0] && !acc.includes(match[0]) ? acc.concat(match[0]) : acc
}, [])
return sh(`TaskKill /F /PID ${pids.join(' /PID ')}`)
})
}
return sh('lsof -i -P')
.then(res => {
const { stdout } = res
if (!stdout) return res
const lines = stdout.split('\n')
const existProccess = lines.filter((line) => line.match(new RegExp(`:*${port}`))).length > 0
if (!existProccess) return Promise.reject(new Error('No process running on port'))
return sh(
`lsof -i ${method === 'udp' ? 'udp' : 'tcp'}:${port} | grep ${method === 'udp' ? 'UDP' : 'LISTEN'} | awk '{print $2}' | xargs kill -9`
)
})
}