vutran / port-find

Retrieve active connections given a remote port

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

port-find

Retrieve active connections given a remote port

Install

$ npm i -S port-find

or with Yarn:

$ yarn add port-find

Usage

const portFind = require('port-find');

portFind(3000)
    .then(res => {
        console.log(res);
    })
    .catch(err => {
        console.error(err);
    });

License

MIT © Vu Tran

About

Retrieve active connections given a remote port


Languages

Language:JavaScript 100.0%