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

@terranc/trellis-dashboard

v0.1.5

Published

> 本地 Web UI,用于浏览和管理 [Trellis](https://github.com/anthropics/trellis) 项目产物 — 规格文档、任务和工作空间日志。

Downloads

924

Readme

Trellis Dashboard

本地 Web UI,用于浏览和管理 Trellis 项目产物 — 规格文档、任务和工作空间日志。

English

功能

  • 文档浏览器 — 浏览 .trellis/spec/ 目录下的文档,支持完整 Markdown 渲染
  • 任务管理 — 查看任务列表、状态和详情页,底层调用 task.py
  • 本地优先 — 完全在本地运行,直接读取 .trellis/ 目录
  • 多实例 — 可同时为不同项目启动多个 dashboard(端口自动递增)

快速开始

# 直接运行(无需安装)— 使用 @latest 确保获取最新版本
npx @terranc/trellis-dashboard@latest

或全局安装:

npm install -g @terranc/trellis-dashboard
trellis-dashboard

注意: 使用 @latest 可确保每次都获取最新版本。不加此标签时,npx 可能使用缓存版本。

Dashboard 默认在 http://localhost:3777 打开(端口被占用时自动递增)。

CLI 选项

trellis-dashboard              # 默认端口 3777
trellis-dashboard --port 8080  # 自定义端口
trellis-dashboard --no-open    # 不自动打开浏览器

项目结构

packages/
  server/    Express 后端 — 读取 .trellis/,提供 API 和静态文件服务
  web/       React SPA (Vite) — 文档浏览器、任务管理界面
bin/
  trellis-dashboard.js   CLI 入口

开发

# 启动 Vite 开发服务器(端口 5173,/api 代理到 localhost:3777)
cd packages/web && npx vite

# 单独启动 API 服务
node bin/trellis-dashboard.js

# 质量检查
npm run format && npm run lint && npm run type-check

# 运行测试
npm test

环境要求

  • Node.js >= 18
  • 项目目录中已初始化 .trellis/
  • PATH 中可用的 python3task.py 依赖)

许可证

MIT