JetBrains Rider
 
Get JetBrains Rider
Get your hands on the new features ahead of the release by joining the Early Access Program for Rider 2025.1! Learn more

Using interactive Debugger Console

Last modified: 03 September 2024

When you are debugging a Node.js application, JetBrains Rider shows two console tabs in the Debug tool window - Process Console and Debugger Console.

  • The Process Consoletab shows the output of the node process itself, that is, everything that is written to process.stdout and process.stderr directly or is logged using console.*.

    Node.js debugging session: Process Console
  • In the Debugger Console, you can run JavaScript code snippets and view the console.* messages.