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

@knewbeing/vitepress-plugin-nolebase

v1.1.1

Published

Vendored nolebase integrations for VitePress -?enhanced-readabilities, git-changelog, inline-link-preview, highlight-targeted-heading, index, and more. .

Downloads

91

Readme

@knewbeing/vitepress-plugin-nolebase

npm version license

nolebase 插件套件的一站式封装包:将所有 @knewbeing nolebase 系列插件聚合为单一入口,开箱即用。

Vendored nolebase integrations for VitePress — a local, fork-free copy of the nolebase plugin suite, rewritten to resolve all cross-package imports locally.

版权声明 / Copyright

本包代码派生自 @nolebase/integrations(MIT 许可证)。
原始版权归 nolebase 所有。
knewbeing(知在,[email protected])改进并重新发布,修改部分仍遵循 MIT 许可证。

This package is derived from @nolebase/integrations (MIT License).
Original copyright belongs to nolebase.
Improved and republished by knewbeing ([email protected]). Modifications remain under MIT License.

See NOTICE.md for full attribution details.

Included Packages

| Local module | Original package | |---|---| | vitepress/client | @nolebase/integrations/vitepress/client | | vitepress/vite | @nolebase/integrations/vitepress/vite | | vitepress/markdown-it | @nolebase/integrations/vitepress/markdown-it | | meta/vitepress | @nolebase/vitepress-plugin-meta | | enhanced-readabilities/* | @nolebase/vitepress-plugin-enhanced-readabilities | | highlight-targeted-heading/* | @nolebase/vitepress-plugin-highlight-targeted-heading | | git-changelog/* | @nolebase/vitepress-plugin-git-changelog | | inline-link-preview/* | @nolebase/vitepress-plugin-inline-link-preview | | index-plugin/* | @nolebase/vitepress-plugin-index | | enhanced-mark/* | @nolebase/vitepress-plugin-enhanced-mark | | ui | @nolebase/ui |

功能特性 / Features

  • 📦 一站式封装 — 单包涵盖 enhanced-readabilities、git-changelog、inline-link-preview、highlight-targeted-heading、index、enhanced-mark 等全部插件
  • 🔧 本地化跨包引用 — 将所有 @nolebase 包内部 import 改写为本地路径,消除外部依赖冲突
  • 🚀 三行接入presetVite / presetClient / presetMarkdownIt 三个预设函数,极简配置
  • 🌐 多语言支持 — 继承所有子插件的 i18n 能力

安装 / Installation

npm install @knewbeing/vitepress-plugin-nolebase
# or
pnpm add @knewbeing/vitepress-plugin-nolebase

使用 / Usage

// .vitepress/config.ts
import { defineConfig } from 'vitepress'
import { presetVite } from '@knewbeing/vitepress-plugin-nolebase/vitepress/vite'
import { transformHeadMeta } from '@knewbeing/vitepress-plugin-nolebase/vitepress/vite'

export default defineConfig({
  vite: {
    plugins: [
      ...presetVite(),
    ],
  },
  async transformHead(ctx) {
    return await transformHeadMeta()(ctx)
  },
})
// .vitepress/theme/index.ts
import type { Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme'
import { presetClient } from '@knewbeing/vitepress-plugin-nolebase/vitepress/client'

export default {
  extends: DefaultTheme,
  enhanceApp({ app }) {
    presetClient(app)
  },
} satisfies Theme
// .vitepress/config.ts(markdown 配置)
import { presetMarkdownIt } from '@knewbeing/vitepress-plugin-nolebase/vitepress/markdown-it'

export default defineConfig({
  markdown: {
    config: (md) => {
      presetMarkdownIt(md)
    },
  },
})

许可证 / License

MIT

相关链接 / Links