Version: 1.98.0
License:MIT
Free for non-commercial useFree for commercial use
Visual Studio Code
WindowsmacOSLinux
About
A lightweight but powerful source code editor from Microsoft
Visual Studio Code is a free, open-source code editor developed by Microsoft with built-in support for development operations like debugging, task running, and version control.
Download Notice
- Visit the official VS Code download page
- Choose the appropriate version for your operating system
- Follow the installation wizard instructions
Installation
macOS
- Using Homebrew:
brew install --cask visual-studio-code
- Or download the .dmg file and drag to Applications folder
Windows
- Using Chocolatey:
choco install vscode
- Or run the downloaded installer (.exe) and follow the wizard
Linux
- Using Snap:
sudo snap install code --classic
- Using apt:
sudo apt update sudo apt install code
Basic Configuration
- Install essential extensions:
- ESLint for JavaScript/TypeScript
- Prettier for code formatting
- GitLens for Git integration
- Enable Auto Save: File > Auto Save
- Configure keyboard shortcuts: File > Preferences > Keyboard Shortcuts
Summary
VS Code offers powerful features like IntelliSense, debugging support, and Git integration. Its extensible architecture allows customization through thousands of extensions.
Package Manager Installation
Homebrew Cask (macOS)
brew install --cask visual-studio-code
Chocolatey (Windows)
choco install vscode