Visual Studio Code是微软开发的一款开源跨平台(Windows、Linux、Mac)源代码编辑器,目前处于活跃开发中,已经拥有丰富的拓展程序可用,越来越完善,虽无法与VS相比,但对于这个新生儿(2015年4月30日),却一样做得非凡优秀,它不仅提供舒适的编程环境,而且具有强大的可扩展性(插件库),更重要的是它轻量级,而且免费开源,颜值不错。

代码编辑器 Visual Studio Code v1.71.2 Win Mac Linux(图1)

Getting Started

Visual Studio Code is a lightweight but powerful source code editor which runs on your desktop and is available for Windows, macOS and Linux. It comes with built-in support for JavaScript, TypeScript and Node.js and has a rich ecosystem of extensions for other languages and runtimes (such as C++, C#, Java, Python, PHP, Go, .NET).

Code editing.Redefined.

Free. Built on open source. Runs everywhere.

Meet IntelliSense.

Go beyond syntax highlighting and autocomplete with IntelliSense, which provides smart completions based on variable types, function definitions, and imported modules.

Print statement debugging is a thing of the past.

Debug code right from the editor. Launch or attach to your running apps and debug with break points, call stacks, and an interactive console.

Git commands built-in.

Working with Git and other SCM providers has never been easier. Review diffs, stage files, and make commits right from the editor. Push and pull from any hosted SCM service.

Extensible and customizable.

Want even more features? Install extensions to add new languages, themes, debuggers, and to connect to additional services. Extensions run in separate processes, ensuring they won’t slow down your editor.

Deploy with confidence and ease

With Microsoft Azure you can deploy and host your React, Angular, Vue, Node, Python (and more!) sites, store and query relational and document based data, and scale with serverless computing, all with ease, all from within VS Code.

Home Page: https://code.visualstudio.com

下载地址

代码编辑器 Visual Studio Code v1.71.2 Win Mac Linux
百度网盘:https://pan.baidu.com/s/13qK1hNFMMPnT0jSXCaBYeA?pwd=9xu1
官方下载:https://code.visualstudio.com/#alt-downloads

Stable Insiders
macOS Universal
Windows x64 User Installer
Linux x64 .deb
Linux x64 .rpm
Other downloads

or open on web

RHEL, Fedora, and CentOS based distributions#

We currently ship the stable 64-bit VS Code in a yum repository, the following script will install the key and repository:

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'

Then update the package cache and install the package using dnf (Fedora 22 and above):

dnf check-update
sudo dnf install code

Or on older versions using yum:

yum check-update
sudo yum install code

Due to the manual signing process and the system we use to publish, the yum repo may lag behind and not get the latest version of VS Code immediately.