Universal MDX for Expo apps and websites.
- Build-time MDX to React Native or React DOM components.
- Server-rendered MDX for downloading content over a CMS.
- Custom components and style definitions.
bun add @bacons/mdx
Add support for importing md and mdx files in your metro.config.js file.
metro.config.js
const { getDefaultConfig } = require("expo/metro-config");
const { withMdx } = require("@bacons/mdx/metro");
const config = withMdx(getDefaultConfig(__dirname));
module.exports = config;Manual setup
If you need to customize the babelTransformerPath more, than use this manual setup:
metro.config.js
const { getDefaultConfig } = require("expo/metro-config");
const config = getDefaultConfig(__dirname);
config.resolver.sourceExts.push("md", "mdx");
config.transformer.babelTransformerPath = require.resolve("./transformer.js");
module.exports = config;Create a custom metro transformer. This is used to transform MDX files into JS + React Native before transpiling with Babel.
./transformer.js
const upstreamTransformer = require("@expo/metro-config/babel-transformer");
const MdxTransformer = require("@bacons/mdx/metro-transformer");
module.exports.transform = async (props) => {
// Then pass it to the upstream transformer.
return upstreamTransformer.transform(
// Transpile MDX first.
await MdxTransformer.transform(props)
);
};Create a markdown file:
./demo.mdx
import { CustomComponent } from './my-custom-component';
# Hello World
I **am** a _markdown_ file!
<CustomComponent />This file can be imported and treated as a React component:
./App.js
import Demo from "./demo.mdx";
export default function App() {
return <Demo />;
}By default, this package uses an incomplete set of universal React Native components for DOM elements. You may wish to improve the components, add more, or swap them out for your own.
import { Text } from "react-native";
import { MDXComponents } from "@bacons/mdx";
export default function App() {
return (
<Demo
components={{
h1: (props) => <h1 {...props} />,
// Add custom components which can be used as JSX elements.
RedText: (props) => <Text {...props} style={{ color: "red" }} />,
// This can be used as `<RedText />` without the need to import it.
}}
/>
);
}Now inside of your markdown file, you can use the custom components:
# Hello World
<RedText />You can set the components for all children using the MDXComponents React context component.
import { Text } from "react-native";
import { MDXComponents } from "@bacons/mdx";
export default function App() {
// Pass any HTML element as a key to the MDXComponents component.
return (
<MDXComponents
components={{
h1: (props) => <Text {...props} />,
// Add custom components which can be used as JSX elements.
RedText: (props) => <Text {...props} style={{ color: "red" }} />,
// This can be used as `<RedText />` without the need to import it.
}}
>
<Demo />
</MDXComponents>
);
}Be sure to pass the
styleprop down to the component you're using, this is how the styles are cascaded.
This package works similarly to most docs sites. You create high-level styles for the entire site. This can be cascaded down to reduce the scope of a style.
import { MDXStyles } from "@bacons/mdx";
export default function App() {
// Pass any HTML element as a key to the MDXStyles component.
return (
<MDXStyles
h1={{
fontSize: 32,
fontWeight: "bold",
color: "red",
}}
>
<Demo />
</MDXStyles>
);
}The <MDXStyles> components can be stacked in different levels, think of these like CSS classes.
You can add support for importing .mdx files in your tsconfig.json file.
tsconfig.json
{
"compilerOptions": {
"typeRoots": ["./global.d.ts"]
},
"extends": "expo/tsconfig.base"
}Now create a file that declares the module.
./global.d.ts
declare module "*.mdx" {
import React from "react";
import { CustomComponentsProp } from "@bacons/mdx";
const Component: React.FC<{
components?: CustomComponentsProp;
}>;
export default Component;
}Optional native-only step, not required for MDX to work.
React Native has suboptimal error messages for when you use React DOM components on native or render strings outside of <Text /> elements. This can make migration and code sharing very painful. This package has an experimental dev-only feature to print out optimized errors when you render react-dom built-in's such as div, p, h1, etc. on native.
Simply add the following to your babel.config.js, and clear the transform cache npx expo start --clear:
module.exports = function (api) {
api.cache(true);
return {
presets: [["babel-preset-expo", { jsxImportSource: "@bacons/mdx/jsx" }]],
};
};Now when you render a div, p, h1, etc. on native, you will get a helpful error message.
export default function App() {
return <div>Hey</div>;
}ERROR Unsupported DOM <p /> at: /Users/evanbacon/Documents/GitHub/bacons/mdx/apps/demo/src/App.tsx:1:11
This will break in production.
It's possible to parse MDX to DOM elements instead of universal components. This can be useful when building for web-only or migrating from web-only. To do this, pull in the getDOMComponents function and pass it to the components prop of the MDX component.
import { getDOMComponents } from "@bacons/mdx";
import Demo from "./readme.md";
export default function App() {
return <Demo components={getDOMComponents()} />;
}This will render the following MDX as DOM elements:
# Hello World
I **am** a _markdown_ file!And the DOM:
<h1>Hello World</h1>
<p>I <strong>am</strong> a <em>markdown</em> file!</p>- Follow the steps detailed here: https://nextjs.org/docs/advanced-features/using-mdx
- Add the following packages to
transpile-moduleswithin yournext.config.js:'@bacons/mdx', '@bacons/react-views', '@expo/html-elements',
Load and render MDX content from a remote server. This is useful for CMS-driven content, blog posts, or any MDX that needs to be fetched at runtime.
First, compile MDX on your server (API route, edge function, or build script):
// app/api/mdx+api.ts (Expo Router API route)
import { compileMDX } from "@bacons/mdx/server";
export async function GET(request: Request) {
const url = new URL(request.url);
const slug = url.searchParams.get("slug");
// Fetch MDX content from your CMS or file system
const mdxSource = `
# Hello World
This is **bold** text with a <CustomButton>Click me</CustomButton>.
`;
const compiled = await compileMDX(mdxSource);
return Response.json(compiled);
}The compileMDX function accepts optional remark and rehype plugins:
const compiled = await compileMDX(mdxSource, {
remarkPlugins: [remarkGfm],
rehypePlugins: [rehypeHighlight],
});Use the RemoteMDX component and useMDXFetch hook to fetch and render remote MDX:
import { RemoteMDX, useMDXFetch, MDXComponents } from "@bacons/mdx";
import { Text, ActivityIndicator } from "react-native";
function BlogPost({ slug }: { slug: string }) {
const { content, loading, error } = useMDXFetch(`/api/mdx?slug=${slug}`);
if (loading) return <ActivityIndicator />;
if (error) return <Text>Error: {error.message}</Text>;
if (!content) return null;
return (
<MDXComponents
components={{
CustomButton: (props) => (
<Text {...props} style={{ color: "blue" }} />
),
}}
>
<RemoteMDX source={content} />
</MDXComponents>
);
}You can also fetch the content yourself and pass it directly:
import { RemoteMDX, type CompiledMDX } from "@bacons/mdx";
function BlogPost({ content }: { content: CompiledMDX }) {
return <RemoteMDX source={content} />;
}- Server: Compiles MDX to a JSON-serializable AST format (not executable JavaScript)
- Client: Fetches the JSON and renders it using the existing component system
- Security: No
eval()or code execution - the AST is pure data - Components: Custom components work via
MDXComponentscontext orcomponentsprop - Styles:
MDXStylescontext is fully supported
Frontmatter is extracted and available in the compiled output:
const compiled = await compileMDX(`
---
title: My Post
date: 2024-01-01
---
# Content here
`, {
remarkPlugins: [remarkFrontmatter, remarkMdxFrontmatter],
});
console.log(compiled.frontmatter);
// { title: "My Post", date: "2024-01-01" }Access frontmatter on the client:
function BlogPost({ slug }: { slug: string }) {
const { content } = useMDXFetch(`/api/mdx?slug=${slug}`);
return (
<>
<Text>{content?.frontmatter?.title}</Text>
<RemoteMDX source={content} />
</>
);
}- ol, li, ul are all buggy. PRs welcome.
- Native image ratios are weird.
This is a universal MDX implementation for Expo (React & Metro). It aims to be a general-purpose MDX implementation for Expo projects that leverage universal Metro (Expo CLI).
- Test in the
apps/demoproject.
This library powers my (Evan Bacon) personal blog, the source can be found here: Evan Bacon portfolio.