-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Always cleanup verdaccio ports before running registry
- Loading branch information
Showing
2 changed files
with
83 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// eslint-disable-next-line depend/ban-dependencies | ||
import { execa } from 'execa'; | ||
|
||
// 99% inspired by https://github.com/tiaanduplessis/kill-port/blob/master/index.js | ||
const killProcessInPort = async (port: number, method: 'tcp' | 'udp' = 'tcp') => { | ||
if (!port || isNaN(port)) { | ||
throw new Error('Invalid argument provided for port'); | ||
} | ||
let args: string[] = []; | ||
let command: string; | ||
|
||
if (process.platform === 'win32') { | ||
try { | ||
const { stdout } = await execa('netstat', ['-nao']); | ||
|
||
if (!stdout) { | ||
return; | ||
} | ||
|
||
const lines = stdout.split('\n'); | ||
const lineWithLocalPortRegEx = new RegExp(`^ *${method.toUpperCase()} *[^ ]*:${port}`, 'gm'); | ||
const linesWithLocalPort = lines.filter((line) => line.match(lineWithLocalPortRegEx)); | ||
|
||
const pids = linesWithLocalPort.reduce<string[]>((acc, line) => { | ||
const match = line.match(/\d+/gm); | ||
if (match && match[0] && !acc.includes(match[0])) { | ||
acc.push(match[0]); | ||
} | ||
return acc; | ||
}, []); | ||
|
||
if (pids.length > 0) { | ||
args = ['/F', ...pids.flatMap((pid) => ['/PID', pid])]; | ||
command = 'TaskKill'; | ||
} | ||
} catch (error) { | ||
throw new Error(`Failed to detect process on port ${port}: ${(error as Error).message}`); | ||
} | ||
} else { | ||
const protocol = method === 'udp' ? 'udp' : 'tcp'; | ||
args = [ | ||
'-c', | ||
`lsof -i ${protocol}:${port} | grep ${method === 'udp' ? 'UDP' : 'LISTEN'} | awk '{print $2}' | xargs kill -9`, | ||
]; | ||
command = 'sh'; | ||
} | ||
|
||
try { | ||
if (command) { | ||
await execa(command, args); | ||
} else { | ||
throw new Error('No command to kill process found'); | ||
} | ||
} catch (error: any) { | ||
if (!error.message.includes('No such process')) { | ||
console.error(`Failed to kill process on port ${port}`); | ||
throw error; | ||
} | ||
} | ||
}; | ||
|
||
export const killPort = async (ports: number | number[], method: 'tcp' | 'udp' = 'tcp') => { | ||
const allPorts = Array.isArray(ports) ? ports : [ports]; | ||
|
||
console.log(`🚮 cleaning up process in ports: ${allPorts.join(', ')}`); | ||
await Promise.all(allPorts.map((port) => killProcessInPort(port, method))); | ||
}; |