@seihon/loader
v0.4.1
Published
A Webpack loader that transforms and organizes MDX for static site generation.
Downloads
8
Readme
@seihon/loader
Seihon【製本】(Bookbinding in Japanese) is a JavaScript toolkit that improves your MDX transformation pipeline. It allows you to quickly transform MDX documents into a collection (like turning codices into book).
More importantly, this toolkit is the last piece of the puzzle that enables code-splitted CMS-less MDX-based static site generation.
@seihon/loader
is a webpack
loader that collects frontmatter
from all MDX documents and transforms them into one single object. It allows you to statically generate Table of Content, Blog Directory, Project List, or anything that contains a collection of data derived from frontmatter
, without manual maintenance. You can even paginate the result using query parameters.
In most occasions, you need to use this toolkit together with
webpack
,@mdx-js/loader
,babel-loader
andloadable-components
in order to build a complete CMS-less static site that automatically.
Usage
This is an example of using @seihon/loader
alone. For a complete example of the entire Seihon toolkit, please refer to the main README.md
.
Although Seihon makes no assumption about your project structure, it's always easier to explain its usage with one. Take the following structure as an example.
my-site/
src/
components/
home.jsx
post.jsx
...
content/
posts/
introducing-seihon/
index.mdx
...
effective-javascript/
index.mdx
...
seihon.config.js
projects/
...
seihon.config.js
...
webpack.config.js
...
// webpack.config.js
// ...
module: {
rules: [
{
test: /seihon\.config\.js$/,
use: ['babel-loader', '@seihon/loader'],
},
// ...
];
}
// src/content/posts/introducing-seihon.mdx
---
title: Introducing Seihon
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
// src/content/posts/effective-javascript.mdx
---
title: Effective JavaScript
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
// src/content/{posts,projects}/seihon.config.js
module.exports = {
transform: (frontmatter, text) => {
...frontmatter,
postId: frontmatter.title
.replace(/[^0-9a-zA-Z\s]/gi, '')
.replace(/\s+/gi, '-')
.toLowerCase(),
minRead: Math.ceil(text.split(' ').length / 200)
}
};
// src/components/home.jsx
import React from 'react';
import seihon from '@seihon/macro';
const posts = seihon('../content/posts/seihon.config.js');
export default function Blog() {
return posts.map(({ postId, minRead }) => (
<PostPreview postId={postId} minRead={minRead} />
));
}
Configuration
Loader Options
@seihon/loader
takes two options, which control the global behaviors.
{
esModule: true, // boolean - wether to emit the resulting frontmatter array in ES Module syntax
parallel: 10 // number - the level of parallelism used when reading frontmatters from markdown files
}
The individual seihon.config.js
determines how a specific collection of frontmatters is loaded. The filename seihon.config.js
is just a convention. It can be changed to any name as you like.
{
transform: (frontmatter, markdownContent, filePath) => frontmatter, // function - allow custom transformation of frontmatter
sort: (a, b) => a < b; // function - allow custom sorting of the list of frontmatters
serialize: {}, // Record<string, data => string> - allow custom serialization of a specific key in the frontmatter
hook: code => code // function - allow custom transformation of the final code right before emitting
}
Support
This library has been continuously used in many of my personal projects, and is regarded as production-ready. In the foreseeable future, I will continuously maintain and support this library.
Issues and Feedback
Please voice your opinion and report bugs in the issues sections of this GitHub project.
Contributing
You are more than welcome to add more functionalities, improve documentation, fix bugs, and anything you think is needed. The build step is pretty self-explanatory. Please refer to CONTRIBUTING.md for more details.
License
MIT