멋진 커뮤니티 모듈

@fibjs/감지-포트

NPM 버전 빌드 상태 앱베이어 빌드 상태 테스트 범위 데이비드 뎁스 알려진 취약점 npm 다운로드

포트 탐지기의 JavaScript 구현

설치하다

1
$ npm i @fibjs/detect-port --save

용법

1 2
const detectPort = require('@fibjs/detect-port'); const availablePort = detectPort();

또는

1 2 3 4 5 6 7 8
const 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.`); }

질문 및 제안

여기에서 문제를 열어주세요 .

특허

MIT