Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pid-port

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pid-port - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

6

index.js

@@ -18,4 +18,4 @@ 'use strict';

const linux = () => {
const {stdout} = execa('ss', ['-tunlp']);
const linux = async () => {
const {stdout} = await execa('ss', ['-tunlp']);
return stdout;

@@ -25,3 +25,3 @@ };

const win32 = async () => {
const {stdout} = execa('netstat', ['-ano']);
const {stdout} = await execa('netstat', ['-ano']);
return stdout;

@@ -28,0 +28,0 @@ };

{
"name": "pid-port",
"version": "0.1.0",
"version": "0.1.1",
"description": "Get the ID of the process that uses a certain port",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc