What framework is vscode developed with?
vscode is developed based on Electron (formerly known as AtomShell). Electron is based on Node.js and Chromium, allowing developers to use front-end technologies such as HTML, CSS and JavaScript to develop cross-platform desktop GUI applications.
Introduction to Electron
Electron allows you to use pure JavaScript to call rich native (operating system) APIs to create desktop applications. You can think of it as a variant of Node.js that focuses on desktop applications rather than the web server side.
This does not mean that Electron is a JavaScript version of a graphical user interface (GUI) library. Instead, Electron uses web pages as its GUI, so you can think of it as a stripped-down version of the Chromium browser controlled by JavaScript.
The above is the detailed content of What framework is used to develop vscode?. For more information, please follow other related articles on the PHP Chinese website!