npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

diat-live-inspector

v1.5.2

Published

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

Downloads

177

Readme

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