Is VS Code Down? How to Check Status and Keep Coding During Outages (2026)
๐ก Monitor your APIs โ know when they go down before your users do
Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.
Affiliate link โ we may earn a commission at no extra cost to you
TLDR: Check if VS Code is down at apistatuscheck.com/api/vscode. Most "VS Code is down" reports aren't the editor itself โ they're the Extension Marketplace, Remote-SSH/Containers, Live Share, or GitHub Copilot backend failing while the local editor keeps running fine.
VS Code itself is a local application โ it doesn't need the internet to open a file and let you type. But modern VS Code workflows lean hard on cloud-connected services: the Extension Marketplace, Remote Development (SSH, Containers, WSL), Live Share, Settings Sync, and AI features like GitHub Copilot. When any of those go down, it feels exactly like "VS Code is down," even though the editor is running perfectly.
Here's how to tell what's actually broken, keep working locally, and know when it's safe to blame Microsoft instead of your machine.
Is VS Code Actually Down Right Now?
Before assuming the worst, check independent sources first:
- API Status Check โ VS Code โ Independent monitoring with response time history
- Is VS Code Down? โ Quick status check with 24h timeline
- Azure DevOps Status โ Microsoft's official status page (VS Code Marketplace runs on Azure infrastructure)
- Downdetector โ VS Code โ Community-reported outages
VS Code's Moving Parts
"VS Code is down" almost always means one specific dependency, not the editor:
| Component | What Breaks | Impact |
|---|---|---|
| Local editor | Rarely goes "down" โ it's a desktop app | Typing, local files, local debugging all keep working |
| Extension Marketplace | Can't install/update extensions | New installs fail, existing extensions unaffected |
| Remote-SSH / Containers | Can't connect to remote hosts or dev containers | Remote workflows completely blocked |
| Remote-WSL | Can't attach to WSL distro | Windows+Linux dev workflow blocked |
| Live Share | Can't start or join a session | Pair programming broken |
| Settings Sync | Settings/extensions don't sync across machines | Annoying but not blocking |
| GitHub Copilot | Completions stop, chat errors out | AI assistance down, editor still works |
| Git integration | Push/pull/fetch fail | Usually a GitHub/GitLab issue, not VS Code |
Key insight: Because VS Code is a local-first app, a "VS Code outage" is almost always a Marketplace, Remote, Sync, or Copilot outage. If you can still open and edit files, VS Code isn't down โ one of its cloud dependencies is.
Common VS Code Issues That Aren't Outages
| Symptom | Likely Cause | Fix |
|---|---|---|
| Extensions won't install | Marketplace outage OR corporate firewall/proxy | Check apistatuscheck.com/api/vscode, then check proxy settings |
| Editor freezes or crashes | Misbehaving extension, memory leak | Reload window (Cmd/Ctrl+Shift+P โ "Reload Window"), disable extensions one by one |
| IntelliSense stops working | Language server crashed | Restart TS/language server from the command palette |
| Remote-SSH stuck "Connecting" | Stale remote VS Code Server on the host | SSH in manually, delete ~/.vscode-server, reconnect |
| Copilot suggestions stop | Auth token expired, or Copilot backend degraded | Sign out/in of GitHub, check status.github.com |
| Git operations hang | Network issue reaching GitHub/GitLab, not VS Code | Test git fetch in a terminal outside VS Code |
| Settings Sync stuck | Sync service degraded | Turn sync off and back on, or sync manually via Settings export |
Monitoring VS Code Dependencies for Your Team
If your team's workflow depends on Remote Containers, a shared dev environment, or Marketplace availability for onboarding new machines, it's worth monitoring the underlying Azure DevOps status feed directly rather than finding out from a Slack message that "VS Code is broken for everyone."
- API Status Check โ Slack/Discord alert when VS Code's tracked status changes
- status.dev.azure.com โ Subscribe to Azure DevOps status updates (backs the Marketplace)
- RSS feed โ Add it to your team's
#tools-statuschannel alongside GitHub and npm
// Health check for Marketplace-dependent CI steps
async function checkMarketplaceHealth(): Promise<boolean> {
try {
const res = await fetch('https://marketplace.visualstudio.com/_apis/public/gallery', {
method: 'HEAD',
})
return res.ok
} catch {
return false
}
}
// Use before extension-install steps in CI
const marketplaceUp = await checkMarketplaceHealth()
if (!marketplaceUp) {
console.warn('Marketplace unavailable โ skipping extension install, using cached versions')
}
The "VS Code Is Down" Checklist
- Check apistatuscheck.com/api/vscode โ confirm it's a real outage, not just you
- Identify which layer is actually broken โ local editor, Marketplace, Remote, Sync, or Copilot are independent
- Keep working locally โ the core editor almost never goes down; most outages only affect cloud-connected features
- Isolate extension problems โ reload the window or run
code --disable-extensionsbefore assuming it's Microsoft's fault - Don't panic-uninstall extensions โ most "VS Code broke" reports are one misbehaving extension, not a platform outage
- After recovery:
- Reload the window to pick up restored connectivity
- Re-check Remote-SSH connections, which sometimes need a manual reconnect
- Re-enable Copilot suggestions if you disabled them
Get Notified Before Your Team Notices
- Bookmark apistatuscheck.com/api/vscode for real-time status
- Set up instant alerts via API Status Check integrations
- Know the layers โ Marketplace, Remote, Sync, and Copilot each fail independently of the core editor
Looking for a more complete monitoring setup across every tool in your stack, not just VS Code? Check out Better Stack for uptime monitoring, incident management, and status pages that go well beyond a single-service check.
API Status Check monitors VS Code and 280+ other developer tools and APIs in real-time. Set up free alerts at apistatuscheck.com.
๐ Tools We Use & Recommend
Tested across our own infrastructure monitoring 200+ APIs daily
Uptime Monitoring & Incident Management
Used by 100,000+ websites
Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.
โWe use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.โ
Secrets Management & Developer Security
Trusted by 150,000+ businesses
Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.
โAfter covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.โ
SEO & Site Performance Monitoring
Used by 10M+ marketers
Track your site health, uptime, search rankings, and competitor movements from one dashboard.
โWe use SEMrush to track how our API status pages rank and catch site health issues early.โ
Alert Pro
14-day free trialStop checking โ get alerted instantly
Next time Vscode goes down, you'll know in under 60 seconds โ not when your users start complaining.
- Email alerts for Vscode + 9 more APIs
- $0 due today for trial
- Cancel anytime โ $9/mo after trial