vue-mdx-bundler
v1.6.0
Published
desc
Downloads
4
Readme
WIP we'll update this readme
this is a fork of react version of mdx-bundler by kentcdodds.com thanks Kent 🙏
The problem
You have a string of MDX and various TS/JS files that it uses and you want to get a bundled version of these files to eval in the browser.
This solution
This is an async function that will compile and bundle your MDX files and their dependencies. It uses esbuild, so it's VERY fast and supports TypeScript files (for the dependencies of your MDX files). It also uses xdm which is a more modern and powerful MDX compiler with fewer bugs and more features (and no extra runtime requirements).
Your source files could be local, in a remote github repo, in a CMS, or wherever
else and it doesn't matter. All mdx-bundler
cares about is that you pass it
all the files and source code necessary and it will take care of bundling
everything for you.
FAQ:
MDX enables you to combine terse markdown syntax for your content with the power of React components. For content-heavy sites, writing the content with straight-up HTML can be annoyingly verbose. Often people solve this using a WSYWIG editor, but too often those fall short in mapping the writer's intent to HTML. Many people prefer using markdown to express their content source and have that parsed into HTML to be rendered.
The problem with using Markdown for your content is if you want to have some
interactivity embedded into your content, you're pretty limited. You either need
to insert an element that JavaScript targets (which is annoyingly indirect), or
you can use an iframe
or something.
As previously stated, MDX enables you to combine terse markdown syntax for your content with the power of React components. So you can import a React component and render it within the markdown itself. It's the best of both worlds.
mdx-bundler
actually bundles dependencies of your MDX files. For example, this
won't work with next-mdx-remote
, but it will with mdx-bundler
:
---
title: Example Post
published: 2021-02-13
description: This is some description
---
# Wahoo
import Demo from './demo'
Here's a **neat** demo:
<Demo />
next-mdx-remote
chokes on that import because it's not a bundler, it's just a
compiler. mdx-bundler
is an MDX compiler and bundler. That's the difference.
Those tools are intended to be run "at build time" and then you deploy the built version of your files. This means if you have some content in MDX and want to make a typo change, you have to rebuild and redeploy the whole site. This also means that every MDX page you add to your site will increase your build-times, so it doesn't scale all that well.
mdx-bundler
can definitely be used at build-time, but it's more powerfully
used as a runtime bundler. A common use case is to have a route for your MDX
content and when that request comes in, you load the MDX content and hand that
off to mdx-bundler
for bundling. This means that mdx-bundler
is infinitely
scalable. Your build won't be any longer regardless of how much MDX content you
have. Also, mdx-bundler
is quite fast, but to make this on-demand bundling
even faster, you can use appropriate cache headers to avoid unnecessary
re-bundling.
Webpack/rollup/etc also require that all your MDX files are on the local filesystem to work. If you want to store your MDX content in a separate repo or CMS, you're kinda out of luck or have to do some build-time gymnastics to get the files in place for the build.
With mdx-bundler
, it doesn't matter where your MDX content comes from, you can
bundle files from anywhere, you're just responsible for getting the content into
memory and then you hand that off to mdx-bundler
for bundling.
Totally. It works with any of those tools. Depending on whether your
meta-framework supports server-side rendering, you'll implement it differently.
You might decide to go with a built-time approach (for Gatsby/CRA), but as
mentioned, the true power of mdx-bundler
comes in the form of on-demand
bundling. So it's best suited for SSR frameworks like Remix/Next.
Why not?
It has more features, fewer bugs, and no runtime!
Table of Contents
Installation
This module is distributed via npm which is bundled with node and
should be installed as one of your project's dependencies
:
yarn add vue-mdx-bundler
npm install --save vue-mdx-bundler
Usage
import {bundleMDX} from 'mdx-bundler'
const mdxSource = `
---
title: Example Post
published: 2021-02-13
description: This is some description
---
# Wahoo
import Demo from './demo'
Here's a **neat** demo:
<Demo />
`.trim()
const result = await bundleMDX(mdxSource, {
files: {
'./demo.tsx': `
import * as React from 'react'
function Demo() {
return <div>Neat demo!</div>
}
export default Demo
`,
},
})
const {code, frontmatter} = result
From there, you send the code
to your client, and then:
todo
Ultimately, this gets rendered (basically):
<header>
<h1>This is the title</h1>
<p>This is some description</p>
</header>
<main>
<div>
<h1>Wahoo</h1>
<p>Here's a <strong>neat</strong> demo:</p>
<div>Neat demo!</div>
</div>
</main>
Options
files
The files
config is an object of all the files you're bundling. The key is the
path to the file (relative to the MDX source) and the value is the string of the
file source code. You could get these from the filesystem or from a remote
database. If your MDX doesn't reference other files (or only imports things from
node_modules
), then you can omit this entirely.
xdmOptions
This allows you to modify the built-in xdm configuration (passed to xdm.compile). This can be helpful for specifying your own remarkPlugins/rehypePlugins.
bundleMDX(mdxString, {
xdmOptions(input, options) {
// this is the recommended way to add custom remark/rehype plugins:
// The syntax might look weird, but it protects you in case we add/remove
// plugins in the future.
options.remarkPlugins = [...(options.remarkPlugins ?? []), myRemarkPlugin]
options.rehypePlugins = [...(options.rehypePlugins ?? []), myRehypePlugin]
return options
},
})
esbuildOptions
You can customize any of esbuild options with the option esbuildOptions
. This
takes a function which is passed the default esbuild options and expects an
options object to be returned.
bundleMDX(mdxSource, {
esbuildOptions(options) {
options.minify = false
options.target = [
'es2020',
'chrome58',
'firefox57',
'safari11',
'edge16',
'node12',
]
return options
},
})
More information on the available options can be found in the esbuild documentation.
It's recommended to use this feature to configure the target
to your desired
output, otherwise, esbuild defaults to esnext
which is to say that it doesn't
compile any standardized features so it's possible users of older browsers will
experience errors.
globals
This tells esbuild that a given module is externally available. For example, if
your MDX file uses the d3 library and you're already using the d3 library in
your app then you'll end up shipping d3
to the user twice (once for your app
and once for this MDX component). This is wasteful and you'd be better off just
telling esbuild to not bundle d3
and you can pass it to the component
yourself when you call getMDXComponent
.
Here's an example:
// server-side or build-time code that runs in Node:
import {bundleMDX} from 'mdx-bundler'
const mdxSource = `
# This is the title
import leftPad from 'left-pad'
<div>{leftPad("Neat demo!", 12, '!')}</div>
`.trim()
const result = await bundleMDX(mdxSource, {
// NOTE: this is *only* necessary if you want to share deps between your MDX
// file bundle and the host app. Otherwise, all deps will just be bundled.
// So it'll work either way, this is just an optimization to avoid sending
// multiple copies of the same library to your users.
globals: {'left-pad': 'myLeftPad'},
})
// server-rendered and/or client-side code that can run in the browser or Node:
todo
Component Substitution
MDX Bundler passes on
XDM's ability to substitute components
through the components
prop on the component returned by getMDXComponent
.
Here's an example that removes p tags from around images.
import * as React from 'react'
todo
<MdxContent components={{p: Paragraph}} />
Issues
Looking to contribute? Look for the Good First Issue label.
🐛 Bugs
Please file an issue for bugs, missing documentation, or unexpected behavior.
💡 Feature Requests
Please file an issue to suggest new features. Vote on feature requests by adding a 👍. This helps maintainers prioritize what to work on.
LICENSE
MIT