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

vuepress-theme-mount

v1.0.2

Published

## 简介 `vuepress-theme-mount` 这个主题来源于作者想要实现属于自己的博客,在众多 `WordPress`,`hexo`等较为成熟的博客中选择了一个并未广泛使用的 `vuepress` 作为基础开发而来。由于在开发时关于 `vuepress` 的开发文档并不全,对于想要使用 `vuepress` 开发自定义主题的开发者不友好,在开发的同时写了一篇教程:[VuePress 开发个人博客进阶之自定义主题](https://juejin.im/post/68695655047560233

Readme

vuepress-theme-mount

简介

vuepress-theme-mount 这个主题来源于作者想要实现属于自己的博客,在众多 WordPresshexo等较为成熟的博客中选择了一个并未广泛使用的 vuepress 作为基础开发而来。由于在开发时关于 vuepress 的开发文档并不全,对于想要使用 vuepress 开发自定义主题的开发者不友好,在开发的同时写了一篇教程:VuePress 开发个人博客进阶之自定义主题 帮助大家,对于开发主题有任何疑问,可在这篇文章中先查找。

预览

  • 「首页」 image
  • 「首页入口」 image
  • 「笔记」 image
  • 「读书」 image

主题安装

npm i vuepress-theme-mount
npm i pug // 主题采用 pug 开发
npm i pug-plain-loader

主题配置

  • record 文件夹

该文件夹用于记录博客。必须有一个 README.md,内容如下:

---
layout: RecordLayout
description: '这里有一些技巧,可以帮助你更好地优化 JavaScript 代码,从而提高性能。'
---

其他博客格式如下:

---
layout: ContentPage
description: '这里有一些技巧,可以帮助你更好地优化 JavaScript 代码,从而提高性能。'
lastUpdated: '2020-01-01'
---
# 内容
  • read 文件夹

该文件夹用于记录读书笔记。必须有一个 README.md,内容如下:

---
layout: ReadLayout
---

其他博客格式如下:

---
layout: ContentPage
---
# 内容
  • project 文件夹

该文件夹用于记录项目总结。必须有一个 README.md,内容如下:

---
layout: ProjectLayout
description: '这里有一些技巧,可以帮助你更好地优化 JavaScript 代码,从而提高性能。'
lastUpdated: '2020-01-01'
---

其他博客格式如下:

---
layout: ContentPage
description: '这里有一些技巧,可以帮助你更好地优化 JavaScript 代码,从而提高性能。'
lastUpdated: '2020-01-03'
---
# 内容
  • other 文件夹

该文件夹用于一段小文字。必须有一个 README.md,内容如下,注意,这一段 description 需要与正文内容相同。

---
layout: OtherLayout
title: 'xx感想'
description: // 全部内容
---
# 标题
// 全部内容

其他博客格式如下:

---
layout: OtherLayout
title: 'xx感想'
description: // 全部内容
---
# 标题
// 全部内容

首页

主题提供了一个首页 (Homepage) 的布局。想要使用它,需要在根级 README.md 的 YAML front matter 指定 home: true。

以下是一个如何使用的例子:

# /README.md
---
message: Welcome to my Blog
actionText: Start →
actionLink: /about
features:
- title: 笔记
  link: /record
  details: 行走的每一步。
- title: 读书
  link: /read
  details: 读书是要有笔记的呀。
- title: 项目 Mark
  link: /project
  details: 每一段的记录,这是我的脚步。
- title: 吧啦吧啦
  link: /other
  details: 来这里说一说。
links:
- title: Github
  link: https://github.com/Gesj-yean
  icon: github
- title: 掘金
  link: https://juejin.im/user/2189882895384221
  icon: juejin
---