https://github.com/pirosikick/available-port
Detect available port number in Node.js
https://github.com/pirosikick/available-port
Last synced: 3 months ago
JSON representation
Detect available port number in Node.js
- Host: GitHub
- URL: https://github.com/pirosikick/available-port
- Owner: pirosikick
- License: mit
- Created: 2015-01-08T13:28:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-08T13:32:14.000Z (over 10 years ago)
- Last Synced: 2025-02-26T15:54:16.357Z (4 months ago)
- Size: 117 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# available-port
Search available port number in Node.js## Usage
```javascript
var availablePort = require('available-port');availablePort.searchCountUp(3000, function (err, no) {
...
});availablePort.searchCountDown(3000, function (err, no) {
...
});
```## License
MIT