英文:
What web UI framework is VS Code built using?
问题
我想构建一个类似于Visual Studio Code的应用程序。我知道它是使用Electron构建的,但我不知道他们在Electron中使用了什么Web框架。
英文:
I want to build an app like Visual Studio Code. I know it's built using electron, but I don't know what web framework they have used with electron.
答案1
得分: 1
None. Quoting Erich Gamma from What frontend framework does VS Code use?,
What many people don't know is that we decided to not use any UI frameworks from the beginning, and that's still true today because performance is very important to us, and we want to be to be fully in control of our own destiny right? So we don't want to chase a framework or track some performance from in the framework. We want to be directly as close to the DOM as possible.
That also applies to Monaco- the editor component of VS Code.
英文:
None. Quoting Erich Gamma from What frontend framework does VS Code use?,
> What many people don't know is that we decided to not use any UI frameworks from the beginning, and that's still true today because performance is very important to us, and we want to be to be fully in control of our own destiny right? So we don't want to chase a framework or track some performance from in the framework. We want to be directly as close to the DOM as possible.
That also applies to Monaco- the editor component of VS Code.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论