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

diat-live-inspector

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diat-live-inspector

开启一个Node.js进程的inspect端口,并与其通信

  • 1.5.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
11
decreased by-35.29%
Maintainers
1
Weekly downloads
 
Created
Source

live-inspector

开启一个Node.js进程的inspect端口,并与其通信。

原理

SIGUSR1 + inspector protocol

限制

  • 因为SIGUSR1没法用在windows上,所以这个lib不支持windows。
  • 因为只能监听9229端口,所以如果9229端口已经被占用(比如被其他Node.js的inspect端口占用),则无法正确进行操作。
  • 如果进程已经开启了inspector端口并进行了一些操作,同时使用这个lib可能会产生未知后果。

使用

const { Communication } = require('diat-live-inspector')

(async () => {
  const comm = new Communication({
    pid: PID
  })

  // 开始通信
  await comm.connect()

  // 执行一个表达式
  const ret = await comm.execCode('process.version')

  console.log(ret) // 输出: { result: { type: 'string', value: 'v10.16.0' } }

  // 关闭通信
  await comm.disconnect()
})();

API

TODO

事件

通过Communication.eventEvents实例,可以通过其监听到inspector协议中的事件。除了inspector协议的事件外,还包括Communication自定义的事件,有:

  • LiveInspector.close: ws关闭。参数表示关闭的原因,包含: code, reason

FAQs

Package last updated on 26 Jun 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc