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
pnpm add -D node-network-devtools
yarn
yarn add -D node-network-devtools
npm
npm i -D 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.
typescript
import { register } from 'node-network-devtools'
register()
javascript
const { register } = require('node-network-devtools')
register()
If you want to use options, you can go to options to see the details.