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-mono

v0.1.0

Published

Vite plugin for monorepo - auto-discover local packages and use source code in browser

Downloads

100

Readme

vite-plugin-mono

🚀 Monorepo 源码开发 Vite 插件

在浏览器中直接使用 TypeScript 源码,无需构建

npm version license

English · 简体中文


💡 什么是 vite-plugin-mono?

这是 mono-mjs浏览器端配套插件mono 处理 Node.js 端的模块解析(用于 Vite 插件、编译器等),而 vite-plugin-mono 处理浏览器端的模块解析。

为什么需要它?

问题mono 只能拦截 Node.js ESM loader。浏览器端的导入通过 Vite 的解析器,不使用 mono

解决方案vite-plugin-mono 使用 Vite 的 resolve.alias,将本地包重定向到其源码。


✨ 特性

  • 🎯 零配置 - 与 mono 配合开箱即用
  • 🔍 自动发现 - 自动查找所有本地包
  • ⚡️ 热更新 - 修改立即生效
  • 📦 兼容性 - 支持 npm、yarn、pnpm、bun

📦 安装

npm install -D vite-plugin-mono

🚀 快速开始

// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { viteMono } from 'vite-plugin-mono'

export default defineConfig({
  plugins: [
    viteMono(),  // 必须放第一个!
    vue()
  ]
})

就这样! 现在浏览器端的导入也会使用源码了。


📚 工作原理

mono vs vite-plugin-mono

| 工具 | 作用域 | 应用场景 | |------|--------|----------| | mono | Node.js | Vite 插件、编译器、构建工具 | | vite-plugin-mono | 浏览器 | 运行时代码、Vue 组件 |

示例

你的项目
├── packages/
│   ├── ui-lib/           # 本地包
│   │   ├── package.json  # { "name": "ui-lib", "local": "./src/index.ts" }
│   │   └── src/index.ts
│   └── app/
│       └── src/App.vue   # import { Button } from 'ui-lib'
└── vite.config.ts        # viteMono() 重定向 'ui-lib' → 源码

⚙️ 配置选项

viteMono({
  // 调试模式
  debug: false,
  
  // 排除的包
  exclude: ['some-package']
})

🔗 相关项目

  • mono-mjs - Node.js 端 monorepo 开发 CLI 工具

📄 License

MIT © alamhubb


Made with ❤️ by alamhubb

报告 Bug · 请求功能