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

@cooper-x-oak/progressive-dev-framework

v0.1.0

Published

A progressive development framework template for rapid prototyping and systematic evolution

Readme

Progressive Dev Framework

一个渐进式开发框架模板,帮助你在快速迭代和代码质量之间找到平衡。

核心特性

  • 🚀 Demo 优先 - 快速验证想法,不受约束
  • 🔄 渐进式演进 - 从原型到系统化代码的自然过渡
  • 📚 模式沉淀 - 像 OpenSpec 一样积累可复用的思路
  • 🛠️ 内置 Skills - 自动化常见工作流程

项目结构

progressive-dev-framework/
├── CLAUDE.md          # Claude 项目配置和开发约定
├── demo/              # 功能验证和快速原型
├── src/               # 系统化的核心代码
├── patterns/          # 解决问题的思路模式库
└── docs/              # 架构决策和文档

快速部署

NPX 一键部署(推荐,跨平台)

npx @cooper-x-oak/progressive-dev-framework my-project-name

其他方式

Linux/Mac:

bash <(curl -sSL https://raw.githubusercontent.com/Cooper-X-Oak/progressive-dev-framework/main/scripts/deploy-new-project.sh) my-project-name

Windows PowerShell:

iwr https://raw.githubusercontent.com/Cooper-X-Oak/progressive-dev-framework/main/scripts/deploy-new-project.ps1 -OutFile deploy.ps1; powershell -ExecutionPolicy Bypass -File deploy.ps1; Remove-Item deploy.ps1

GitHub Template:

  • 点击 "Use this template" 按钮

手动克隆:

git clone --depth 1 https://github.com/Cooper-X-Oak/progressive-dev-framework.git my-project

详见 快速部署指南

使用方式

开发流程

  1. demo/ 中快速验证想法
  2. 将成熟功能提炼到 src/
  3. 把管用的思路沉淀到 patterns/
  4. docs/ 中记录重要决策

快速开始

# 1. 在浏览器中打开第一个 demo
open demo/hello-htmler.html  # macOS
start demo/hello-htmler.html # Windows

# 2. 查看快速开始指南
cat docs/getting-started.md

或者直接:

  1. 查看 CLAUDE.md 了解项目约定
  2. demo/ 中开始你的第一个功能验证
  3. 参考 patterns/template.md 记录你的思路

文档导航

贡献

欢迎提交 Issue 和 Pull Request 来改进这个框架!

详见 贡献指南

更新日志

查看 CHANGELOG.md 了解版本历史和计划。

License

MIT License - 详见 LICENSE 文件