Get Started
Node Network Devtools is a network debugging tool that integrates Chrome Devtools. It provides a network debugging experience equivalent to a browser, and is ultra easy to access. It is free of proxy competition and trouble.
Install
pnpm add node-network-devtools
yarn add node-network-devtools
npm i node-network-devtools
Usage
Node.js programs that support both ESM and CommonJS standards only need to introduce and call the 'register' method in the entry file.
import { register } from 'node-network-devtools'
register()
const { register } = require('node-network-devtools')
register()