Debugging node.js in Visual Studio Code Preview in OS X

I am testing a recently released preview of Visual Studio Code on Mac OS X when I try to start debugging or joining my node.js application. I get the error "Unable to start OpenDebug because Mono (or Mono version> = 3.10.0).

I installed Mono MDK from http://www.mono-project.com/download/ .

What do I need to do for debugging to work in VSCode preview?

+6
source share
3 answers

I did brew install mono and the problem disappeared the next time I clicked the start button.

Unfortunately, I do not know why the MDK installer will not work for you. This was the best solution for me, since I use homebrew for most other development tools already.

+11
source

I assume that your mono installation did not add mono to PATH, thus the visual code of the studio: the preview could not find it. brew install mono should fix the problem

+2
source

I installed mono on my ubuntu and it worked.

 sudo apt-get install mono-complete 
0
source

Source: https://habr.com/ru/post/986256/


All Articles