Streamdown
Streaming-optimized React Markdown renderer. Drop-in replacement for react-markdown with built-in streaming support, security, and interactive controls.
Quick Setup
1. Install
npm install streamdown
Optional plugins (install only what's needed):
npm install @streamdown/code @streamdown/mermaid @streamdown/math @streamdown/cjk
2. Configure Tailwind CSS (Required)
This is the most commonly missed step. Streamdown uses Tailwind for styling and the dist files must be scanned.
Tailwind v4 — add to globals.css:
@source "../node_modules/streamdown/dist/*.js";
Tailwind v3 — add to tailwind.config.js:
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/streamdown/dist/*.js",
],
};
3. Basic Usage
import { Streamdown } from 'streamdown';
<Streamdown>{markdown}</Streamdown>
4. With AI Streaming (Vercel AI SDK)
'use client';
import { useChat } from '@ai-sdk/react';
import { Streamdown } from 'streamdown';
import { code } from '@streamdown/code';
export default function Chat() {
const { messages, input, handleInputChange, handleSubmit, isLoading } = useChat();
return (
<>
{messages.map((msg, i) => (
<Streamdown
key={msg.id}
plugins={{ code }}
caret="block"
isAnimating={isLoading && i === messages.length - 1 && msg.role === 'assistant'}
>
{msg.content}
</Streamdown>
))}
<form
<input value={input} disabled={isLoading} />
</form>
</>
);
}
5. Static Mode (Blogs, Docs)
<Streamdown mode="static" plugins={{ code }}>
{content}
</Streamdown>
Key Props
| Prop |
Type |
Default |
Purpose |
children |
string |
— |
Markdown content |
mode |
"streaming" | "static" |
"streaming" |
Rendering mode |
plugins |
{ code?, mermaid?, math?, cjk? } |
— |
Feature plugins |
isAnimating |
boolean |
false |
Streaming indicator |
caret |
"block" | "circle" |
— |
Cursor style |
components |
Components |
— |
Custom element overrides |
controls |
boolean | object |
true |
Interactive buttons |
linkSafety |
LinkSafetyConfig |
{ enabled: true } |
Link confirmation modal |
shikiTheme |
[light, dark] |
['github-light', 'github-dark'] |
Code themes |
className |
string |
— |
Container class |
allowedElements |
string[] |
all |
Tag names to allow |
disallowedElements |
string[] |
[] |
Tag names to disallow |
allowElement |
AllowElement |
— |
Custom element filter |
unwrapDisallowed |
boolean |
false |
Keep children of disallowed elements |
skipHtml |
boolean |
false |
Ignore raw HTML |
urlTransform |
UrlTransform |
defaultUrlTransform |
Transform/sanitize URLs |
For full API reference, see references/api.md.
Plugin Quick Reference
| Plugin |
Package |
Purpose |
| Code |
@streamdown/code |
Syntax highlighting (Shiki, 200+ languages) |
| Mermaid |
@streamdown/mermaid |
Diagrams (flowcharts, sequence, etc.) |
| Math |
@streamdown/math |
LaTeX via KaTeX (requires CSS import) |
| CJK |
@streamdown/cjk |
Chinese/Japanese/Korean text support |
Math requires CSS:
import 'katex/dist/katex.min.css';
For plugin configuration details, see references/plugins.md.
References
Use these for deeper implementation details:
- references/api.md — Complete props, types, and interfaces
- references/plugins.md — Plugin setup, configuration, and customization
- references/styling.md — CSS variables, data attributes, custom components, theme examples
- references/security.md — Hardening, link safety, custom HTML tags, production config
- references/features.md — Carets, remend, static mode, controls, GFM, memoization, troubleshooting
Example Configurations
Copy and adapt from assets/examples/:
- basic-streaming.tsx — Minimal AI chat with Vercel AI SDK
- with-caret.tsx — Streaming with block caret cursor
- full-featured.tsx — All plugins, carets, link safety, controls
- static-mode.tsx — Blog/docs rendering
- custom-security.tsx — Strict security for AI content
Common Gotchas
- Tailwind styles missing — Add
@source directive or content entry for node_modules/streamdown/dist/*.js
- Math not rendering — Import
katex/dist/katex.min.css
- Caret not showing — Both
caret prop AND isAnimating={true} are required
- Copy buttons during streaming — Disabled automatically when
isAnimating={true}
- Link safety modal appearing — Enabled by default; disable with
linkSafety={{ enabled: false }}
- Shiki warning in Next.js — Install
shiki explicitly, add to transpilePackages
allowedTags not working — Only works with default rehype plugins
- Math uses
$$ not $ — Single dollar is disabled by default to avoid currency conflicts
1---2name: streamdown3description: Implement, configure, and customize Streamdown — a streaming-optimized React Markdown renderer with syntax highlighting, Mermaid diagrams, math rendering, and CJK support. Use when working with Streamdown setup, configuration, plugins, styling, security, or integration with AI streaming (e.g., Vercel AI SDK). Triggers on: (1) Installing or setting up Streamdown, (2) Configuring plugins (code, mermaid, math, cjk), (3) Styling or theming Streamdown output, (4) Integrating with AI chat/streaming, (5) Configuring security, link safety, or custom HTML tags, (6) Using carets, static mode, or custom components, (7) Troubleshooting Tailwind, Shiki, or Vite issues.4license: Sustainable Use License 1.05---67# Streamdown89Streaming-optimized React Markdown renderer. Drop-in replacement for `react-markdown` with built-in streaming support, security, and interactive controls.1011## Quick Setup1213### 1. Install1415```bash16npm install streamdown17```1819Optional plugins (install only what's needed):20```bash21npm install @streamdown/code @streamdown/mermaid @streamdown/math @streamdown/cjk22```2324### 2. Configure Tailwind CSS (Required)2526**This is the most commonly missed step.** Streamdown uses Tailwind for styling and the dist files must be scanned.2728**Tailwind v4** — add to `globals.css`:29```css30@source "../node_modules/streamdown/dist/*.js";31```3233**Tailwind v3** — add to `tailwind.config.js`:34```js35module.exports = {36 content: [37 "./app/**/*.{js,ts,jsx,tsx,mdx}",38 "./node_modules/streamdown/dist/*.js",39 ],40};41```4243### 3. Basic Usage4445```tsx46import { Streamdown } from 'streamdown';4748<Streamdown>{markdown}</Streamdown>49```5051### 4. With AI Streaming (Vercel AI SDK)5253```tsx54'use client';55import { useChat } from '@ai-sdk/react';56import { Streamdown } from 'streamdown';57import { code } from '@streamdown/code';5859export default function Chat() {60 const { messages, input, handleInputChange, handleSubmit, isLoading } = useChat();6162 return (63 <>64 {messages.map((msg, i) => (65 <Streamdown66 key={msg.id}67 plugins={{ code }}68 caret="block"69 isAnimating={isLoading && i === messages.length - 1 && msg.role === 'assistant'}70 >71 {msg.content}72 </Streamdown>73 ))}74 <form onSubmit={handleSubmit}>75 <input value={input} onChange={handleInputChange} disabled={isLoading} />76 </form>77 </>78 );79}80```8182### 5. Static Mode (Blogs, Docs)8384```tsx85<Streamdown mode="static" plugins={{ code }}>86 {content}87</Streamdown>88```8990## Key Props9192| Prop | Type | Default | Purpose |93|------|------|---------|---------|94| `children` | `string` | — | Markdown content |95| `mode` | `"streaming" \| "static"` | `"streaming"` | Rendering mode |96| `plugins` | `{ code?, mermaid?, math?, cjk? }` | — | Feature plugins |97| `isAnimating` | `boolean` | `false` | Streaming indicator |98| `caret` | `"block" \| "circle"` | — | Cursor style |99| `components` | `Components` | — | Custom element overrides |100| `controls` | `boolean \| object` | `true` | Interactive buttons |101| `linkSafety` | `LinkSafetyConfig` | `{ enabled: true }` | Link confirmation modal |102| `shikiTheme` | `[light, dark]` | `['github-light', 'github-dark']` | Code themes |103| `className` | `string` | — | Container class |104| `allowedElements` | `string[]` | all | Tag names to allow |105| `disallowedElements` | `string[]` | `[]` | Tag names to disallow |106| `allowElement` | `AllowElement` | — | Custom element filter |107| `unwrapDisallowed` | `boolean` | `false` | Keep children of disallowed elements |108| `skipHtml` | `boolean` | `false` | Ignore raw HTML |109| `urlTransform` | `UrlTransform` | `defaultUrlTransform` | Transform/sanitize URLs |110111For full API reference, see [references/api.md](references/api.md).112113## Plugin Quick Reference114115| Plugin | Package | Purpose |116|--------|---------|---------|117| Code | `@streamdown/code` | Syntax highlighting (Shiki, 200+ languages) |118| Mermaid | `@streamdown/mermaid` | Diagrams (flowcharts, sequence, etc.) |119| Math | `@streamdown/math` | LaTeX via KaTeX (requires CSS import) |120| CJK | `@streamdown/cjk` | Chinese/Japanese/Korean text support |121122**Math requires CSS:**123```tsx124import 'katex/dist/katex.min.css';125```126127For plugin configuration details, see [references/plugins.md](references/plugins.md).128129## References130131Use these for deeper implementation details:132133- **[references/api.md](references/api.md)** — Complete props, types, and interfaces134- **[references/plugins.md](references/plugins.md)** — Plugin setup, configuration, and customization135- **[references/styling.md](references/styling.md)** — CSS variables, data attributes, custom components, theme examples136- **[references/security.md](references/security.md)** — Hardening, link safety, custom HTML tags, production config137- **[references/features.md](references/features.md)** — Carets, remend, static mode, controls, GFM, memoization, troubleshooting138139## Example Configurations140141Copy and adapt from `assets/examples/`:142143- **[basic-streaming.tsx](assets/examples/basic-streaming.tsx)** — Minimal AI chat with Vercel AI SDK144- **[with-caret.tsx](assets/examples/with-caret.tsx)** — Streaming with block caret cursor145- **[full-featured.tsx](assets/examples/full-featured.tsx)** — All plugins, carets, link safety, controls146- **[static-mode.tsx](assets/examples/static-mode.tsx)** — Blog/docs rendering147- **[custom-security.tsx](assets/examples/custom-security.tsx)** — Strict security for AI content148149## Common Gotchas1501511. **Tailwind styles missing** — Add `@source` directive or `content` entry for `node_modules/streamdown/dist/*.js`1522. **Math not rendering** — Import `katex/dist/katex.min.css`1533. **Caret not showing** — Both `caret` prop AND `isAnimating={true}` are required1544. **Copy buttons during streaming** — Disabled automatically when `isAnimating={true}`1555. **Link safety modal appearing** — Enabled by default; disable with `linkSafety={{ enabled: false }}`1566. **Shiki warning in Next.js** — Install `shiki` explicitly, add to `transpilePackages`1577. **`allowedTags` not working** — Only works with default rehype plugins1588. **Math uses `$$` not `$`** — Single dollar is disabled by default to avoid currency conflicts