๐ŸŸฆ

Visual Studio Code

Visual Studio Code (VS Code) is a free, open-source code editor built by Microsoft. It's the single most-used development tool in the world, with roughly 75.9% of developers reporting they use it โ€” a lead no other editor or IDE comes close to. Its popularity comes from being fast and lightweight out of the box, while a massive extension marketplace lets it become a full-featured environment for almost any language or stack.

๐Ÿ“Œ Quick facts
Type: Lightweight, extensible code editor
Made by: Microsoft
License: Free, open-source (MIT-licensed core; the official Microsoft build adds some proprietary telemetry/branding)
Platforms: Windows, macOS, Linux, and a browser version (vscode.dev)
Primary use case: General-purpose coding across nearly every language, from web dev to Python to DevOps scripting

Key features

Getting started

Download it from code.visualstudio.com, or install it from the command line:

# Windows (winget)
winget install Microsoft.VisualStudioCode

# macOS (Homebrew)
brew install --cask visual-studio-code

# Ubuntu/Debian
sudo apt install code

After installing, open any project folder with code . from a terminal, or use File โ†’ Open Folder.

๐ŸŽฏ Best for: Nearly any beginner-to-professional coding task โ€” web development, scripting, data work, and general coursework. If you only install one editor to follow along with programming tutorials, this is the one most guides assume you're using.