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

zeox

v0.1.0

Published

Zeox is a lightweight and customizable static blog generator

Readme

Zeox

一个轻量级且可定制的静态博客生成器。

特性

  • 🚀 快速生成静态博客
  • 🎨 支持自定义主题
  • 📝 Markdown 支持
  • 🔄 实时预览
  • 📱 响应式设计
  • 🏷️ 标签和归档
  • 📰 RSS 订阅
  • 🔍 全文搜索
  • ⚡ 文件监听和自动重新生成

安装

npm install -g zeox

快速开始

初始化博客

# 在当前目录初始化
zeox init

# 或指定目录
zeox init my-blog

创建新文章

# 创建文章
zeox new "文章标题"

# 创建页面
zeox new page "关于我"

开发预览

# 启动开发服务器
zeox serve

生成静态文件

# 生成静态文件
zeox generate

目录结构

my-blog/
├── posts/          # 文章目录
├── pages/          # 页面目录
├── themes/         # 主题目录
│   └── default/    # 默认主题
├── public/         # 生成的静态文件
└── config.yml      # 配置文件

配置说明

config.yml 中配置你的博客:

# 基本配置
title: My Blog
description: A new blog powered by Zeox
author: Your Name
theme: default
url: http://localhost:3000
language: zh-CN
timezone: Asia/Shanghai

# 文章配置
posts:
  perPage: 10
  sortBy: date
  order: desc

# RSS 配置
rss:
  enabled: true
  count: 20
  description: RSS Feed

# 搜索配置
search:
  enabled: true

更新日志

[0.1.0] - 2024-01-15

新增

  • 完整的博客系统
  • 响应式默认主题
  • 标签和归档页面
  • RSS 订阅功能
  • 全文搜索功能
  • 文件监听和自动重新生成
  • 完善的文档

许可证

GPL-3.0