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

hexo-theme-h

v1.0.0

Published

hexo-theme-h is a sincere and pure Hexo theme

Readme

hexo-theme-h 氢

中文 | English

theme-h 是一个真诚、纯粹的 Hexo 主题。如同 H 是元素周期表中最轻的元素,theme-h 没有复杂的配色和修饰,它只想为你的内容提供一个朴素的容器。设计灵感来自 @khatabwedaa

个人精力有限,本项目仅不定期维护,不接受新功能需求。欢迎 fork 并发展出新的版本。

demo

必要的配置

修改站点的 _config.yml 的如下配置:

  • 关闭 highlight
highlight:
  enable: false
  • 开启 prismjs 并关闭行号
prismjs:
  enable: true
  line_number: false

其他配置

评论

在配置中设置 comment: true,然后填入评论所需代码,以下方式任选:

  • 保存到 layout\_widgets\comments.ejs

  • 如果你的评论代码是 JS 通过选择器定向插入 HTML 代码来实现的,则可以将选择器设置为 #comments,然后使用 Hexo 注入器 将 JS 代码插入进页面

站点统计

没有预留配置项,建议使用 Hexo 注入器 将代码插入页面

开发

  1. 使用 yarn 或 npm 安装依赖

  2. tailwind.config.js 中的 purge.enabled 属性改为 false,这将关闭 tailwindcss 的清理功能,方便开发

  3. 执行 yarn run css,如果你已在上一步中关闭了清理功能,这条命令将编译出一个巨大的 CSS 文件,其中包含 tailwindcss 的所有样式。在此之后对 ejs 文件修改样式时不需要再编译了,但修改 src/main.css 后仍需要编译

  4. 将第 2 步中关闭的清理功能重新开启,执行 yarn run css 编译出最终 CSS 文件