|
|
|
|
|
by jpalomaki
2405 days ago
|
|
vscode is based on Electron. So even if you run it locally, it runs on "browser". So Remote Desktop is not needed. Also there's some other features for remote development. You can for example develop inside Docker while running the UI on your desktop [1]. Or you can connect via ssh [2]. A bit like IDE split between client and server components. All the intelligence runs remotely, just UI runs locally. [1] https://code.visualstudio.com/docs/remote/containers
[2] https://code.visualstudio.com/docs/remote/ssh |
|