# @mdx-js/loader

> Webpack loader for MDX

Latest version **3.1.1** (published 2025-08-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install @mdx-js/loader
pnpm add @mdx-js/loader
yarn add @mdx-js/loader
bun add @mdx-js/loader
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: esm support; no vulnerabilities; high maintenance score; popular repo.

Warnings: low downloads; no types.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 3.1.1 |
| Published | 2025-08-29 |
| First published | 2018-03-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Dependencies | 2 |
| Unpacked size | 14.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 19788 |
| Author | John Otander |
| Maintainers | johno, timneutkens, wooorm, remcohaszing |
| Keywords | jsx, markdown, mdx, preact, react, remark, vue, webpack |

## Links

- npm: https://www.npmjs.com/package/@mdx-js/loader
- Repository: https://github.com/mdx-js/mdx
- Homepage: https://mdxjs.com
- Issues: https://github.com/mdx-js/mdx/issues
- Funding: https://opencollective.com/unified
- npm.io page: https://npm.io/package/@mdx-js/loader

## Dependencies (2)

- [source-map](https://npm.io/package/source-map.md) ^0.7.0
- [@mdx-js/mdx](https://npm.io/package/@mdx-js/mdx.md) ^3.0.0

## Alternatives

- [@mdxeditor/editor](https://npm.io/package/@mdxeditor/editor.md) — 962.4K weekly downloads
- [mmdb-lib](https://npm.io/package/mmdb-lib.md) — 680.9K weekly downloads
- [playcanvas](https://npm.io/package/playcanvas.md) — 36.2K weekly downloads
- [@glw907/cairn-cms](https://npm.io/package/@glw907/cairn-cms.md) — 967 weekly downloads
- [markdown-to-confluence](https://npm.io/package/markdown-to-confluence.md) — 103 weekly downloads

## Recent versions

- 3.1.1 (latest) — 2025-08-29
- 2.0.0-rc.2 (next) — 2021-11-15
- 2.0.0-ci.53 (ci) — 2021-09-13
- 3.1.0 — 2024-10-18
- 3.0.1 — 2024-02-12
- 3.0.0 — 2023-10-24
- 2.3.0 — 2023-02-09
- 2.2.1 — 2022-12-14
- 2.2.0 — 2022-12-14
- 2.1.5 — 2022-10-11
- 2.1.4 — 2022-10-06
- 2.1.3 — 2022-08-17
- 2.1.2 — 2022-06-18
- 2.1.1 — 2022-03-31
- 2.1.0 — 2022-03-16
- … 203 more at https://npm.io/package/@mdx-js/loader/versions

## README

# `@mdx-js/loader`

[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]

webpack loader for MDX.

<!-- more -->

## Contents

* [What is this?](#what-is-this)
* [When should I use this?](#when-should-i-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
  * [`mdx`](#mdx)
  * [`Options`](#options)
* [Examples](#examples)
  * [Combine with Babel](#combine-with-babel)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Contribute](#contribute)
* [License](#license)

## What is this?

This package is a webpack loader to support MDX.

## When should I use this?

This integration is useful if you’re using webpack (or another tool that uses
webpack, such as Next.js or Rspack).

This integration can be combined with the Babel loader to compile modern
JavaScript features to ones your users support.

If you want to evaluate MDX code then the lower-level compiler (`@mdx-js/mdx`)
can be used manually.

## Install

This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:

```sh
npm install @mdx-js/loader
```

## Use

Add something along these lines to your `webpack.config.js`:

```tsx
/**
 * @import {Options} from '@mdx-js/loader'
 * @import {Configuration} from 'webpack'
 */

/** @type {Configuration} */
const webpackConfig = {
  module: {
    // …
    rules: [
      // …
      {
        test: /\.mdx?$/,
        use: [
          {
            loader: '@mdx-js/loader',
            /** @type {Options} */
            options: {/* jsxImportSource: …, otherOptions… */}
          }
        ]
      }
    ]
  }
}

export default webpackConfig
```

See also [¶ Next.js][next] and [¶ Vue CLI][vue-cli], if you’re using webpack
through them, for more info.

## API

This package exports no identifiers.
The default export is [`mdx`][api-mdx].

### `mdx`

This package exports a [webpack][] plugin as the default export.
Configuration (see [`Options`][api-options]) are passed separately through
webpack.

### `Options`

Configuration (TypeScript type).

Options are the same as [`CompileOptions` from `@mdx-js/mdx`][compile-options]
with the exception that the `SourceMapGenerator` and `development` options are
supported based on how you configure webpack.
You cannot pass them manually.

## Examples

### Combine with Babel

If you use modern JavaScript features you might want to use Babel through
[`babel-loader`][babel-loader] to compile to code that works in older browsers:

```tsx
/**
 * @import {Options} from '@mdx-js/loader'
 * @import {Configuration} from 'webpack'
 */

/** @type {Configuration} */
const webpackConfig = {
  module: {
    // …
    rules: [
      // …
      {
        test: /\.mdx?$/,
        use: [
          // Note that Webpack runs right-to-left: `@mdx-js/loader` is used first, then
          // `babel-loader`.
          {loader: 'babel-loader', options: {}},
          {
            loader: '@mdx-js/loader',
            /** @type {Options} */
            options: {}
          }
        ]
      }
    ]
  }
}

export default webpackConfig
```

## Types

This package is fully typed with [TypeScript][].
It exports the additional type [`Options`][api-options].
See [§ Types][types] on our website for information.

## Compatibility

Projects maintained by the unified collective are compatible with maintained
versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, `@mdx-js/loader@^3`,
compatible with Node.js 16.

## Security

See [§ Security][security] on our website for information.

## Contribute

See [§ Contribute][contribute] on our website for ways to get started.
See [§ Support][support] for ways to get help.

This project has a [code of conduct][coc].
By interacting with this repository, organization, or community you agree to
abide by its terms.

## License

[MIT][] © Compositor and [Vercel][]

[api-mdx]: #mdx

[api-options]: #options

[babel-loader]: https://webpack.js.org/loaders/babel-loader/

[backers-badge]: https://opencollective.com/unified/backers/badge.svg

[build]: https://github.com/mdx-js/mdx/actions

[build-badge]: https://github.com/mdx-js/mdx/workflows/main/badge.svg

[chat]: https://github.com/mdx-js/mdx/discussions

[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg

[coc]: https://github.com/mdx-js/.github/blob/main/code-of-conduct.md

[collective]: https://opencollective.com/unified

[compile-options]: https://mdxjs.com/packages/mdx/#compileoptions

[contribute]: https://mdxjs.com/community/contribute/

[coverage]: https://codecov.io/github/mdx-js/mdx

[coverage-badge]: https://img.shields.io/codecov/c/github/mdx-js/mdx/main.svg

[downloads]: https://www.npmjs.com/package/@mdx-js/loader

[downloads-badge]: https://img.shields.io/npm/dm/@mdx-js/loader.svg

[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c

[mit]: https://github.com/mdx-js/mdx/blob/main/packages/loader/license

[next]: https://mdxjs.com/getting-started/#nextjs

[npm]: https://docs.npmjs.com/cli/install

[security]: https://mdxjs.com/getting-started/#security

[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg

[support]: https://mdxjs.com/community/support/

[types]: https://mdxjs.com/getting-started/#types

[typescript]: https://www.typescriptlang.org

[vercel]: https://vercel.com

[vue-cli]: https://mdxjs.com/getting-started/#vue-cli

[webpack]: https://webpack.js.org

---
_Source: https://npm.io/package/@mdx-js/loader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
