Reputation: 281
I am running Visual Studio Code on Ubuntu. Debugging a nodejs app works fine after installing mono. But where can I find the output produced by console.log?
Upvotes: 3
Views: 3285
Reputation: 1067
When in the editor, either:
CMD-Shift-P
then type Console
and choose Open New console
or
CMD-Shift-C
a console window will be opened with nodejs stdout
and stderr
connected to it
Upvotes: 2