winport

0.1.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i winport

Weekly Downloads

1

Version

0.1.1

License

MIT

Last publish

Collaborators

  • coderaiser