MDX

The compiler that lets you write JSX directly inside Markdown documents

Library
npm
v3.1.1
19,742stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
78/100Good
Development Activity72
Maintenance72
Community68
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
84/100Excellent
Architecture88
Code Quality92
Innovation85
Learning Curve70

@mdx-js/mdx is the core compiler behind MDX, an authorable file format that blends Markdown’s readability with the full expressive power of JSX components. It parses markdown into an AST with remark, transforms it into HTML-like hast with rehype, and finally emits a JavaScript/JSX program via recma, letting authors import and render live React (or Preact/Vue) components inline with their prose.

The package exposes a small, composable API — compile, evaluate, and run — so it can be dropped into build-time pipelines (bundler loaders, static-site generators) or used to evaluate MDX strings at runtime. It underpins the broader @mdx-js ecosystem, including webpack/Rollup/esbuild integrations and framework bindings, and is the engine that projects like Next.js, Docusaurus, and Astro’s own MDX integration build on top of.

What You Get

  • A compile/compileSync API that turns an MDX string or file into a JavaScript module exporting a React (or other JSX-runtime) component
  • An evaluate/evaluateSync API for compiling and directly executing MDX at runtime without a separate build step
  • Full support for standard Markdown syntax (CommonMark plus GFM extensions via plugins) interleaved with arbitrary JSX, import/export statements, and JS expressions in curly braces
  • A pluggable unified/remark/rehype plugin pipeline (remarkPlugins, rehypePlugins, recmaPlugins options) for extending or customizing the compile process
  • Source-map generation and development-mode diagnostics for accurate error locations in authored MDX files
  • The foundation package that @mdx-js/loader, @mdx-js/rollup, @mdx-js/esbuild, @mdx-js/react, @mdx-js/preact, and @mdx-js/vue all build on

Common Use Cases

  • Documentation sites that need live, interactive code examples embedded directly in Markdown content (Docusaurus, Next.js docs, Astro content collections)
  • Blog and content platforms where authors write in Markdown but occasionally need custom React components (charts, callouts, embeds) inline
  • Design-system and component-library docs where the same component being documented is rendered live next to its usage example
  • Static-site generators and content pipelines that compile authored content to pre-rendered pages at build time

Under The Hood

Architecture: The compiler is a linear unified pipeline defined in packages/mdx/lib/core.js’s createProcessor: markdown source is parsed by remark-parse into an mdast tree, remark-mdx extends that parser to understand JSX/expression/ESM syntax, a custom remark-mark-and-unravel plugin normalizes how JSX nodes nest inside paragraphs, remark-rehype converts to hast, rehype-recma bridges hast to an estree JS AST, and finally recma-document/recma-jsx-rewrite/recma-build-jsx/recma-stringify assemble that AST into a printable JS program that exports a component function. lib/compile.js, lib/evaluate.js, and lib/run.js are thin wrappers around this shared core for the three usage modes (compile-to-source, compile-and-eval, and eval-a-precompiled-body).

Tech Stack: Pure ESM JavaScript ("type": "module") with TypeScript types authored via JSDoc and emitted through tsc --emitDeclarationOnly (see tsconfig.json, checkJs: true, strict: true). Dependencies are almost entirely other unified-ecosystem packages it owns or coordinates with (unified, remark-parse, remark-rehype, remark-mdx, rehype-recma, recma-*, hast-util-to-jsx-runtime, vfile), plus acorn/estree-walker/estree-util-* for JS AST manipulation and source-map for source-map output. No runtime dependency on React itself — JSX runtime import source is configurable (jsxImportSource), which is how the sibling @mdx-js/preact and @mdx-js/vue packages reuse this same compiler.

Code Quality: The package enforces c8 --100 test coverage (npm run test-coverage fails under anything less than 100%), backed by roughly 3,000 lines of tests across test/compile.js, test/evaluate.js, test/core.js, and test/syntax.js, exercised with Node’s built-in test runner and assert. Source files carry extensive JSDoc @typedef/@property blocks that double as the type surface (no hand-written .d.ts), and the xo-based lint config keeps style consistent across the monorepo’s 196 contributors.

API Design: The public surface is deliberately tiny — five exports (compile, compileSync, evaluate, evaluateSync, run, runSync, createProcessor) covering build-time and runtime use without requiring consumers to understand the internal remark/rehype/recma pipeline. Sensible defaults (format: 'mdx', jsxRuntime: 'automatic', outputFormat: 'program') mean a working setup is a one-line compile(mdxString) call, while remarkPlugins/rehypePlugins/recmaPlugins options give power users direct access to the underlying unified pipeline for advanced customization.

Used by 5 apps in this directory

TypeScript
51%
MIT

Anarlog

Note Taking · AI Assistants · Productivity

9,087

Anarlog is an open-source, local-first AI meeting notetaker that records, transcribes, and summarizes meetings entirely on your device — no cloud lock-in, no mandatory account, and every note saved as a plain markdown file you own forever.

View details
86
Repo Health
77
Technical
69
Dependency
Built with
TypeScript51%
Rust38%
Updated today
Python
54%
Other

authentik

Authentication · Security

24,980

The self-hosted Identity Provider that replaces Okta, Auth0, and Entra ID with a unified SSO platform supporting SAML, OAuth2/OIDC, LDAP, RADIUS, and WebAuthn.

View details
92
Repo Health
81
Technical
68
Dependency
Built with
Python54%
TypeScript33%
Updated today
TypeScript
86%
MIT

medusa

Ecommerce

35,900

The most flexible open-source commerce platform — build B2C, B2B, and marketplace applications with modular, composable commerce primitives.

View details
94
Repo Health
87
Technical
65
Dependency
Built with
TypeScript86%
JavaScript14%
Updated today
Python
99%
Apache 2.0

Rasa Open Source

AI Assistants · AI Development

21,295

Rasa Open Source is a Python machine learning framework for building contextual, multi-turn chatbots and voice assistants that understand natural language and maintain conversation state.

View details
67
Repo Health
78
Technical
64
Dependency
Built with
Python99%
Updated 3 weeks ago
TypeScript
71%
Apache 2.0

Supabase

Developer Tools · Databases · Search

108,148

The open-source Postgres development platform that replaces Firebase with authentication, real-time APIs, edge functions, storage, and vector embeddings — all built on PostgreSQL.

View details
90
Repo Health
91
Technical
66
Dependency
Built with
TypeScript71%
MDX26%
Updated today

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search