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

@pixso/create-plugin

v1.0.4

Published

plugin template

Readme

@pixso/create-plugin

Pixso 插件开发模板脚手架,一键生成各框架初始化插件项目,降低项目搭建成本。

📦 安装与使用

交互式创建

通过以下命令启动交互式脚手架,按提示选择需要的框架即可:

npm init @pixso/plugin
# 或者
npx @pixso/create-plugin

自动化 / 静默模式(支持 AI 或脚本调用)

如果你想通过自动化脚本或 AI 工具无交互地创建项目,可以直接在命令中传递以下参数:

npx @pixso/create-plugin <project-name> [options]

支持的选项(Options):

  • <project-name>: 目标文件夹名称(即项目名称),指定后跳过项目名称询问。
  • -t, --template <name>: 指定框架变体,跳过框架和变体选择交互(可选值:vue / vue-ts / react / react-ts / preact / preact-ts / svelte / svelte-ts)。
  • --host: 注入私有化部署专属的 host 脚本支持(仅针对 hwdc 或特定私有部署环境提供),跳过该项询问。
  • --force: 强制覆盖目标文件夹,跳过是否覆盖的确认提示。
  • -h, --help: 输出命令行帮助信息。

🔗 Pixso 官方工具集

如需了解更多官方插件工具生态,请查阅官方文档: Pixso 开发者文档 - 工具集

📝 更新日志

V1.0.4

  • 优化 --template 等静默参数的非交互式调用支持
  • 新增 --help 原生命令行帮助文档输出
  • 将所有脚手架模板内的 @pixso/plugin-cli 依赖改为 latest,实现版本解耦

V1.0.2

  • 更新 @pixso/plugin-cli 版本
  • 新增 Host 脚本运行支持
  • 修复 pnpm 安装依赖 webpack-hot-middleware 未找到问题