Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
mdx-loader
Advanced tools
A webpack loader to convert Markdown files into React components.
mdx-loader uses mdx-js/mdx under the hood, and follows a batteries-included philosophy, adding a number of super awesome features:
id
slugs added via remark-slugfrontMatter
object via gray-matter.tableOfContents
object via mdx-table-of-contents.npm install --save-dev mdx-loader
MDX can be used with unejected create-react-app projects! To start, you'll need to add a .babelrc
file to the root level of your project:
{
"presets": ["babel-preset-react-app"]
}
Then, you can import a component from any Markdown file by prepending the filename with !babel-loader!mdx-loader!
. For example:
/* eslint-disable import/no-webpack-loader-syntax */
import MyDocument from '!babel-loader!mdx-loader!../pages/index.md'
You can also import documents dynamically using the proposed import()
syntax and React.lazy(), without messing with linter config:
const MyDocument = React.lazy(() => import('!babel-loader!mdx-loader!../pages/index.md'))
Start by adding an entry to your module.rules
array:
module: {
rules: [
/**
* MDX is a tool that converts Markdown files to React components. This
* loader uses MDX to create Page objects for Markdown files. As it
* produces ES2015, the result is then passed through babel.
*/
{ test: /\.mdx?$/,
use: [
'babel-loader',
'mdx-loader',
]
},
// ...
]
},
This assumes you've already got Babel set up with your Webpack project.
You can import
and use your Markdown files like standard components. You can also import a frontMatter
object that contains your document's front matter, and a tableOfContents
object that contains a tree of your document's headings. For example:
import React, { Component } from 'react'
import Document, { frontMatter, tableOfContents } from './document.md'
export default class Something extends Component {
render() {
return (
<div>
<h1>{frontMatter.title}</h1>
<Document />
</div>
)
}
}
If you'd like to add styles for the syntax highlighting, include a Prism.js stylesheet somewhere within your application:
import 'prismjs/themes/prism-tomorrow.css'
FAQs
A batteries-included MDX loader for Webpack.
The npm package mdx-loader receives a total of 825 weekly downloads. As such, mdx-loader popularity was classified as not popular.
We found that mdx-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.