@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.`);
}
質問と提案
ここで問題を開いてください。