@fibjs/обнаружить-порт
JavaScript-реализация детектора портов
Установить
1$ npm i @fibjs/detect-port --save
Применение
1
2const detectPort = require('@fibjs/detect-port');
const availablePort = detectPort();
или
1
2
3
4
5
6
7
8const detectPort = require('@fibjs/detect-port');
const port = 3000;
const availablePort = detectPort(port);
if (availablePort === port) {
console.log(`port ${port} is available!`);
} else {
console.log(`port ${port} is not available! Got a random available port: ${availablePort} for you.`);
}
Вопросы и предложения
Пожалуйста, откройте проблему здесь .