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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vite-plugin-mdtovue

v1.0.2

Published

**作用:** 用于将vue项目中的markdown文件直接转为vue路由组件。

Readme

Markdown转vue项目组件插件

作用: 用于将vue项目中的markdown文件直接转为vue路由组件。

项目来源: B站教程,项目地址GitHub,由于原项目已停止维护且不满足我的需求,遂对其进行了部分修改。

1、使用

npm add -D vitepress # 插件依赖于vitepress,请确保已安装
npm add -D vite-plugin-mdtovue

main.ts/main.js中引用样式:

import "vite-plugin-mdtovue/theme";

vite.config.js/vite.config.ts中配置插件和vue识别markdown文件:

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { MD2Vue } from 'vite-plugin-mdtovue';

export default defineConfig({
  plugins: [ MD2Vue(), vue({ include: [/\.vue$/, /\.md$/] }) ]
})

2、配置

插件引用了vitepress的功能,所以许多配置完全可以遵循vitepress。在vite.config.js/vite.config.ts中,初始化插件时可以直接指定部分参数:

export default defineConfig({
  plugins: [MD2Vue({
    markdown: {
      lineNumbers: true, // 显示行号
      math: true,  // 支持数学公式,需要额外安装markdown-it-mathjax3插件,具体参考vitepress文档
      codeCopyButtonTitle: '复制',  // 复制按钮显示文字
      config: (md: MarkdownIt) => {
        md.use(markdown - it插件1)
            .use(markdown - it插件2);
      }
    },
    // 其他用户参数
  }), vue({include: [/\.vue$/, /\.md$/]})]
})

这当中的markdown参数为vuejs/vitepress项目中的MarkdownOptions接口,详细内容可根据版本查看原项目文件进行其他配置。