🔧 VS Code Extension

Get baseline compatibility information directly in your VS Code editor

← Back to Baseline Map

📦 Installation

Method 1: VS Code Marketplace

  1. Open VS Code
  2. Go to Extensions (Ctrl+Shift+X)
  3. Search for "Baseline Map"
  4. Click Install

Method 2: Command Line

code --install-extension ckhadar3.baseline-map-extension

Method 3: Manual Installation

  1. Download the latest .vsix file from our releases
  2. Open VS Code
  3. Press Ctrl+Shift+P
  4. Type "Extensions: Install from VSIX"
  5. Select the downloaded .vsix file

✨ Features

🎯

Hover Information

Get detailed baseline compatibility info when hovering over web features

🌐

Browser Support

See minimum browser versions and support levels for each feature

🔄

Alternatives

Get specific alternatives for limited availability features

📊

Comprehensive Coverage

Supports 25+ CSS and JavaScript features with detailed information

🚀 How to Use

CSS Features

/* Hover over these properties */
.container {
display: grid;
gap: 1rem;
aspect-ratio: 16/9;
}

JavaScript Features

// Hover over these features
const
data = await fetch('/api');
const
name = user?.profile?.name;
const
result = value ?? 'default';