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

@md-plugins/vite-md-plugin

v0.1.0-alpha.29

Published

A very opinionated Vite plugin for @md-plugins.

Readme

@md-plugins/viteMdPlugin

See the documentation for more details.

An opinionated Vite plugin that transforms Markdown files into Vue Single File Components (SFCs). This plugin integrates Markdown processing directly into your Vite-based Vue project, enabling seamless Markdown-to-Vue workflows.

Features

  • Markdown to Vue SFC Transformation: Converts Markdown files into Vue Single File Components, enabling dynamic content rendering.
  • Navigation Menu Integration: Supports generating a navigation structure based on your Markdown files.
  • Configurable Path Prefix: Allows setting a base path for routing or file resolution.
  • Opinionated and Minimal: Focuses on simplicity, leveraging the power of Vue and Markdown for content-driven applications.

md-plugins Used

The viteMdPlugin is built on top of the following plugins:

| Plugin | Description | Readme | | ----------------------------------- | ----------------------------------------------------------------------- | -------------------------------------------------- | | @md-plugins/md-plugin-imports | Extracts and processes <script import> blocks from Markdown. | README | | @md-plugins/md-plugin-codeblocks | Enhances code block rendering with syntax highlighting, tabs, and more. | README | | @md-plugins/md-plugin-blockquote | Adds customizable CSS classes to blockquotes. | README | | @md-plugins/md-plugin-headers | Extracts and processes headers for generating ToCs or managing headers. | README | | @md-plugins/md-plugin-inlinecode | Adds a custom class to inline code blocks for styling. | README | | @md-plugins/md-plugin-link | Converts Markdown links into Vue components for SPA-friendly routing. | README | | @md-plugins/md-plugin-table | Adds custom classes and attributes to Markdown tables. | README | | @md-plugins/md-plugin-title | Extracts the first header in Markdown as the page title. | README | | @md-plugins/md-plugin-frontmatter | Extracts and processes frontmatter content from Markdown files. | README | | @md-plugins/md-plugin-containers | Adds custom containers for callouts, warnings, and more. | README | | @md-plugins/shared | Shared utilities and types for the plugins. | README |

Installation

Install the plugin via your preferred package manager:

# with pnpm:
pnpm add @md-plugins/vite-md-plugin
# with Yarn:
yarn add @md-plugins/vite-md-plugin
# with npm:
npm install @md-plugins/vite-md-plugin

Usage

Basic Setup with Vite

To use the viteMdPlugin, configure it in your Vite project:

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { viteMdPlugin } from 'vite-md-plugin'

const menu = [] // Define your navigation menu structure here
const basePath = '/docs' // Base path prefix

export default defineConfig({
  plugins: [vue(), viteMdPlugin({ path: basePath, menu })],
})

Quasar Framework Configuration

If you’re using the Quasar Framework, additional configuration is needed to enable support for .md files:

  1. Update quasar.config.(js|ts):
  •     import { viteMdPlugin } from '@md-plugins/vite-md-plugin'
        import { menu } from './src/.q-press/assets/menu' // be sure to create this file
    
        export default defineConfig((ctx) => {
        // ...
        build: {
          vueRouterMode: 'history', // Required for proper hash link handling
          viteVuePluginOptions: {
            include: [/\.(vue|md)$/], // Include Markdown files
          },
         vitePlugins: [
           [
            viteMdPlugin,
            {
             path: ctx.appPaths.srcDir + '/markdown',
              menu: sidebar as MenuItem[],
            },
          ],
          // ...
          ],
        },
        framework: {
          autoImportVueExtensions: ['vue', 'md'], // Enable auto-import for Markdown extensions
        },
  1. Ensure that your routes and hash links are compatible with Vue Router's history mode.

Navigation Menu Integration

The viteMdPlugin allows you to define a navigation structure that can be updated dynamically based on the Markdown files in your project:

const menu = [
  { title: 'Home', path: '/home' },
  { title: 'About', path: '/about' },
]

This menu is passed as a parameter to the plugin and can be used to build a dynamic sidebar or navigation bar in your application.

Options

The viteMdPlugin accepts the following parameters:

| Parameter | Type | Description | | --------- | ---------- | ------------------------------------------------------------------------------------------ | | path | string | The base path prefix for routing or file resolution. | | menu | MenuItem[] | An array representing the navigation menu structure. Each item should have title and path. |

MenuItem Type

The menu parameter should conform to the following structure:

export interface MenuItem {
  name: string
  path?: string
  icon?: string
  iconColor?: string
  rightIcon?: string
  rightIconColor?: string
  badge?: string
  children?: MenuItem[]
  external?: boolean
  expanded?: boolean
}

Testing

To run the tests for this plugin, use the following command:

pnpm test

Documentation

In case this README falls out of date, please refer to the documentation for the latest information.

License

This project is licensed under the MIT License. See the LICENSE file for details.