Socket
Socket
Sign inDemoInstall

find-pid-from-port

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    find-pid-from-port

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


Version published
Weekly downloads
638
decreased by-9.89%
Maintainers
1
Install size
15.4 kB
Created
Weekly downloads
 

Readme

Source

find-pid-from-port

Test windows status Test macOS status Test linux status

npm version Node.js version npm downloads Minified size Known vulnerabilities

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

Install

$ npm install find-pid-from-port

Usage

const findPidFromPort = require("find-pid-from-port")

const example = async () => {
  try {
    const pids = await findPidFromPort(8017)
    console.log(pids.all)
    //=> [1234, 5678]

    console.log(pids.tcp)
    //=> [1234]

    console.log(pids.udp)
    //=> [5678]
  } catch (error) {
    console.log(error)
    //=> "Couldn't find a process with port `8017`"
  }
}
example()

API

findPidFromPort(port)

port

Type: number

Port to lookup.

Keywords

FAQs

Last updated on 02 Nov 2020

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