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

@hellohistory/create-matrix-app

v0.2.4

Published

A CLI to scaffold Next.js Matrix Template

Readme

@hellohistory/create-matrix-app

一个用于快速搭建 Matrix Next.js 模板项目的交互式 CLI。通过一步步的提示即可完成项目初始化,并支持在生成模板后立即使用偏好的包管理器安装依赖。

快速开始

npx @hellohistory/create-matrix-app@latest -n tip-calculator-large-groups -p npm

运行后你可以:

  1. 输入项目名称(默认 my-matrix-app)。
  2. 选择是否立即安装依赖。
  3. 在需要安装依赖时选择包管理器(npm、yarn、pnpm 或 bun)。

完成后会自动写入模板的 package.json 项目名,并在必要时还原 .gitignore

常用参数

  • -n, --name <name>:指定项目名称。
  • -y, --yes:跳过交互,直接使用默认值并启用自动安装。
  • -p, --package-manager <manager>:指定包管理器,支持 npmyarnpnpmbun
  • --no-install:仅生成模板,不自动安装依赖。

示例:

# 跳过交互,使用 pnpm 安装依赖
npx create-matrix-app -y -n my-app -p pnpm

# 只生成模板,稍后手动安装
npx create-matrix-app --no-install

开发提示

  • 项目模板位于 template/ 目录。
  • CLI 源码位于 bin/cli.mjs
  • 复制模板后会自动更新 package.jsonname 字段并保持 JSON 缩进为 2 个空格。
  • 若启用国际化并自定义导航标题,请同步更新 template/_overrides/i18n/messages/*.json 中的对应 key,以避免界面回退到未翻译的占位符。