0.1.1 • Published 10 years ago

winport v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

winport

WinPort - library for getting information about ports and names of processes for windows.

Install

npm i winport

API

getPidByPort(port, callback) - get process id by port.

getNameByPid(pid, callback) - get name by process id.

Example

var winport = require('winport'),
    pid     = 80;
    
    winport.getPidByPort(80, function(error, pid) {
        if (error)
            console.log(error);
        else
            winport.getNameByPid(pid, function(error, name) {
                console.log(error || name);
            });
    });

License

MIT