@vercel/streamdown

A drop-in replacement for react-markdown, designed for AI-powered streaming.

View in AI SkillSafe app
Scanned · no findings
9924 downloads
0 stars
0 demos
SKILL.md
namestreamdown
description>-

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";

Add plugin @source lines only for packages you have installed (omitting uninstalled plugins avoids Tailwind errors). See plugin pages for exact paths:

  • Code: @source "../node_modules/@streamdown/code/dist/*.js";
  • CJK: @source "../node_modules/@streamdown/cjk/dist/*.js";
  • Math: @source "../node_modules/@streamdown/math/dist/*.js";
  • Mermaid: @source "../node_modules/@streamdown/mermaid/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 onSubmit={handleSubmit}>
        <input value={input} onChange={handleInputChange} 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:

Example Configurations

Copy and adapt from assets/examples/:

Common Gotchas

  1. Tailwind styles missing — Add @source directive or content entry for node_modules/streamdown/dist/*.js
  2. Math not rendering — Import katex/dist/katex.min.css
  3. Caret not showing — Both caret prop AND isAnimating={true} are required
  4. Copy buttons during streaming — Disabled automatically when isAnimating={true}
  5. Link safety modal appearing — Enabled by default; disable with linkSafety={{ enabled: false }}
  6. Shiki warning in Next.js — Install shiki explicitly, add to transpilePackages
  7. allowedTags not working — Only works with default rehype plugins
  8. Math uses $$ not $ — Single dollar is disabled by default to avoid currency conflicts

Embed badges

Add these to your README to show the skill's verification status.

SkillSafe verified badge
Verified badge
[![SkillSafe verified badge](https://api.skillsafe.ai/v1/badge/@vercel/streamdown/verified)](https://skillsafe.ai/skill/@vercel/streamdown/)
Installs badge
Installs badge
[![Installs badge](https://api.skillsafe.ai/v1/badge/@vercel/streamdown/installs)](https://skillsafe.ai/skill/@vercel/streamdown/)
Scan badge
Scan badge
[![Scan badge](https://api.skillsafe.ai/v1/badge/@vercel/streamdown/scan)](https://skillsafe.ai/skill/@vercel/streamdown/)
Eval pass rate badge
Eval pass rate
[![Eval pass rate badge](https://api.skillsafe.ai/v1/badge/@vercel/streamdown/eval)](https://skillsafe.ai/skill/@vercel/streamdown/)