Skip to main content
property Process.debugPort

The port used by the Node.js debugger when enabled.

import process from 'node:process';

process.debugPort = 5858;

Type

number
Back to top