showlotus's blog

归档 · 2025

首页

归档

关于

获取可用端口号

NodeJS

const { execSync } = require('child_process') /** * 获取可用端口号,如果当前端口号已被占用,则自增,直到找到可用端口号为止 */ const getAvailablePort = port => { let targetPort = port while (true && tar ...