npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ldr-webpack-md-loader

v1.0.6

Published

一个在构建过程中将 Markdown 文件转换为 HTML 文件的 Webpack 插件。

Downloads

23

Readme

MarkdownToHtmlWebpackPlugin

一个在构建过程中将 Markdown 文件转换为 HTML 文件的 Webpack 插件。

功能

  • 将 Markdown 文件转换为 HTML 文件。
  • 无缝集成到 Webpack 中。
  • 简单配置。

安装

通过 npm 安装插件:

npm install ldr-webpack-md-loader

使用方法

1. 添加插件配置

在你的 Webpack 配置文件 webpack.config.js 中添加插件和加载器配置:

const path = require('path');
const MarkdownToHtmlPlugin = require('./node_modules/ldr-webpack-md-loader/MarkdownToHtmlPlugin');

module.exports = {
  entry: './src/index.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'bundle.js',
  },
  module: {
    rules: [
      {
        test: /\.md$/,
        use: [
          path.resolve(__dirname, './node_modules/ldr-webpack-md-loader/markdown-loader.js')
        ]
      }
    ]
  },
  plugins: [
    new MarkdownToHtmlPlugin({
      input: 'src/about.md',
      output: 'about.html',
    }),
  ],
};

2. 示例 Markdown 文件

在你的 src 目录下创建一个 Markdown 文件,例如 about.md

# About

这是一个示例的 Markdown 文件。

3. 运行构建

运行 Webpack 构建:

npm run build

运行构建后,你应该会在 dist 目录下看到生成的 about.html 文件。

插件选项

MarkdownToHtmlPlugin 构造函数接受一个选项对象,包含以下属性:

  • input:相对于项目根目录的输入 Markdown 文件路径。
  • output:相对于 Webpack 配置中 output.path 目录的输出 HTML 文件路径。

示例

new MarkdownToHtmlPlugin({
  input: 'src/about.md',
  output: 'about.html',
});