An open API service indexing awesome lists of open source software.

https://github.com/serapath/findport

find a free port on local system
https://github.com/serapath/findport

Last synced: 1 day ago
JSON representation

find a free port on local system

Awesome Lists containing this project

README

          

# findport
find a free port on local system

# usage

`npm install findport`

```js
var findport = require('findport')
findport(function (err, port) {
if (err) throw err
console.log(port)
})
```