JetBrains Rider 2023.3 Help

Using interactive Debugger Console

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 Console tab 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.

    Node.js debugging: interactive debugger Console

Run JavaScript in the Debugger Console

  1. Start typing a statement at > in the input field. As you type, JetBrains Rider suggests variants for completion.

  2. Select the relevant statement and press Enter. JetBrains Rider shows its value in the debugger console.

    JetBrains Rider shows previews for objects, so you do not need to expand them. If you still expand an object, you get an overview of just its own properties, the __proto__ contents are hidden by default.

Navigate to source code

  • At each line with output of console.*, JetBrains Rider shows the name of the file and the line where it was called. Click this link to jump to the call in the source code.

    Node.js interactive debugger console: navigation to source code
  • The Debugger Console also shows stack traces. Click the link next to a reported problem to jump to the line of code where this problem occurred.

    Node.js interactive debugger console: navigation to errors

Filter out messages

The Debugger Console tab shows objects in a tree view, with stack traces collapsed by default. Warnings console.warn(), errors console.error(), and info console.info() messages have different icons and background colors to make them easier to notice.

  • To hide log messages of specific types, click the Filter button and select the severities to filter out.

    Node.js interactive debugger console: filtering out messages by type

Group messages

  • The log messages grouped using console.group() and console.groupEnd() are displayed as a tree. To show the output collapsed by default, use console.groupCollapsed().

    Node.js interactive debugger console: log messages grouped

Apply CSS styles

Last modified: 21 March 2024