Debugging nodejs output in Visual Studio Code
I am running Visual Studio Code on Ubuntu. Debugging nodejs app works fine after installing mono. But where can I find the output generated by console.log?
+3
Marco
source
to share
1 answer
In the editor:
- press
CMD-Shift-P
then enterConsole
and selectOpen New console
or
- hit
CMD-Shift-C
a console window will open with nodes connected to it node_s stdout
andstderr
+2
agoldis
source
to share