Home > Mobile >  How to add the whole of VSCode itself into a VueJS webapp?
How to add the whole of VSCode itself into a VueJS webapp?

Time:09-30

I am trying to build a VueJS webapp that has the whole VSCode editor embedded inside of it similar to codesandbox. What part of the vscode codebase do we need in order to get the entire VSCode running inside of VueJS?

So my idea was that I would have a navbar and underneath the navbar I would have the VSCode Editor.

CodePudding user response:

You don't need VS code codebase, since it wouldn't work out of the box in the browser, like you want to. Take a look at Monaco editor, it is basically VS Code editor for browsers.

  • Related