Literate UI/UX for product teams — preview React components instantly in VS Code.
| Feature | Description |
|---|---|
| ⚡ Live Reload | See changes as you type — no manual refresh |
| 📝 Markdown Fences | jsx live renders inline in markdown preview |
| 🎨 Tailwind v4 | Full utility support, zero config |
| 📦 npm Packages | Most packages work via esm.sh CDN |
| 🔍 CodeLens | Click "▶ Preview" above exported components |
| 🎯 TypeScript | Full .tsx support with type stripping |
- Open VS Code
- Press
Cmd+Shift+X(Mac) orCtrl+Shift+X(Windows/Linux) - Search for "Reactive MD"
- Click Install
Or install from the command line:
code --install-extension million-views.reactive-md- Open any
.jsxor.tsxfile - Press
Cmd+K P(Mac) /Ctrl+K P(Windows/Linux) - Start coding — preview updates live!
```jsx live
function Hello() {
return <h1 className="text-2xl font-bold text-blue-600">Hello World!</h1>;
}
```Press Cmd+Shift+V for markdown preview, or Cmd+K P for interactive mode.
The recipes/ folder contains examples of what's possible with Reactive MD — from simple components to self-contained project folders with local imports.
We welcome contributions! Please see:
MIT © Million Views