Socket
Socket
Sign inDemoInstall

port-pid

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    port-pid

Get the pid(s) of a process on a given port


Version published
Weekly downloads
7.9K
increased by4.7%
Maintainers
1
Install size
19.9 kB
Created
Weekly downloads
 

Readme

Source

port-pid Build Status

Get the pid(s) of the process on a given port.

Install

$ npm install --save port-pid

Usage

Get all the pids on a given port, or filter by udp (UDP) or tcp (TCP):

const pids = require('port-pid');

pids(8017).then(pids => {
    
    console.log(pids.all);
    //=> [1234, 5678]
    
    console.log(pids.tcp);
    //=> [1234]
    
    console.log(pids.udp);
     //=> [5678]
});

License

MIT © Michael Wuergler

Keywords

FAQs

Last updated on 09 Jun 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc