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

zadig-plugin-cli

v1.0.5

Published

Zadig Plugin SDK CLI - 快速创建和开发 Zadig 插件的脚手架工具

Downloads

3

Readme

Zadig Plugin CLI

Zadig Plugin SDK 命令行工具,用于快速创建、开发和构建 Zadig 插件。

🚀 安装

# 全局安装
npm install -g zadig-plugin-cli

# 验证安装
zadig-plugin --version
zadig-plugin --help

⚡ 快速开始

1. 创建新插件

# 创建页面插件
zadig-plugin create my-hello-plugin

# 创建标签页插件  
zadig-plugin create my-tab-plugin --type tab

2. 开发插件

cd my-hello-plugin
npm install
zadig-plugin dev

3. 构建插件

zadig-plugin build

📖 命令参考

create - 创建插件项目

zadig-plugin create <plugin-name> [options]

选项:

  • -t, --type <type> - 插件类型(page, tab),默认为 page
  • -f, --force - 强制覆盖已存在的目录

dev - 启动开发服务器

zadig-plugin dev

build - 构建生产版本

zadig-plugin build

📁 项目模板

Page 插件模板

独立的功能页面,包含完整的路由和页面布局。

Tab 插件模板

嵌入到现有页面的标签页组件,无独立路由。

FAQ

构建失败

# 安装依赖
npm install

# 检查 Node.js 版本 (需要 >= 20.0.0)
node --version