Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Inspecting Node.js's Network with Chrome DevTools✨

License

NotificationsYou must be signed in to change notification settings

GrinZero/node-network-devtools

Repository files navigation


Node Network Devtools

🔮 Use chrome network devtool to debugger nodejs

🦎 Similar web crawler experience to browsers

⚙️ Powered by CDP

NodeJsChromeTypeScript


English |简体中文

node-network-devtoolsnpm downloadsAsk DeepWiki

📖 Introduction

As you can see, the node program opened with the--inspect option does not support network tags because it does not proxy user requests.Node network devtools is designed to address this issue by allowing you to debug requests made by nodejs using the network tab of Chrome devtools, making the debugging process equivalent to a web crawler experience in the browser.

Node v22.6.0 experimentally supports network debugging. This library supports use before node v22.6.0, but the specific supported versions are unknown.

🎮 Features

  • HTTP/HTTPS
    • req/res headers
    • payload
    • json str response body
    • binary response body
    • stack follow
      • show stack
      • click to jump
        • base
        • Sourcemap
  • WebSocket
    • messages
    • payload
    • headers
  • Compatibility
    • commonjs
    • esmodule
    • Deno -- Maybe nice to PR to Deno
  • Undici
    • undici.request
    • undici.fetch

👀 Preview

img

📦 Quick Start

1. Install

# npmnpm install node-network-devtools -D# or pnpmpnpm add node-network-devtools -D# or yarnyarn add node-network-devtools -D

2. Usage

Just add the following code to the entry file of your project.

import{register}from'node-network-devtools'process.env.NODE_ENV==='development'&&register()

To stop debugging network requests and eliminate side effects, just use the return value of theregister method for cleanup.

import{register}from'node-network-devtools'constunregister=register()unregister()

Visitors


[8]ページ先頭

©2009-2025 Movatter.jp