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

ynews

v0.0.2

Published

Ynews AI 日报生成工具 - CLI

Readme

Yesterday

AI 驱动的日报生成工具,过滤噪音,按需推送。

工作流程

flowchart LR
    A[抓取RSS] --> B[关键词过滤]
    B --> C{AI 评分}
    C -->|是| D[AI 评分筛选]
    C -->|否| E[跳过]
    D --> F[生成日报]
    E --> F
    F --> G[推送]
    G --> H[飞书]
    G --> I[钉钉]
    G --> J[GitHub]
    G --> K[钉钉文档]

功能特性

  • 开箱即用 内置AI资讯模板,你只需要根据模板配置大模型既可以直接运行
  • 自定义资讯来源 自定义RSS源
  • 降噪 除了关键词黑名单白名单,还支持AI评分、筛选、生成
  • 自定义推送 支持推送钉钉、飞书、Github等
  • WEB GUI 可视化配置
  • 自定义 根据 yaml 配置文件,可以自定义数据源、提示词、推送渠道等等

CLI

# 安装
npm install -g @yesterday/cli

# 生成示例配置文件 yesterday.yaml
yesterday init
# 按需修改 yesterday.yaml
yesterday # 完整流程:抓取 → 生成 → 推送

配置和命令

Options:
  -V, --version        output the version number
  -c, --config <file>  配置文件路径(默认:当前目录下的 yesterday.yaml)
  -d, --dry-run        试运行,不推送,仅输出日报内容到 stdout
  -v, --verbose        输出详细日志
  --hours <number>     抓取最近 N 小时的资讯(默认:24)
  --no-cache           禁用 LLM 缓存
  -h, --help           display help for command

Commands:
  init [options]       生成示例配置文件 yesterday.yaml

Web GUI

  1. 启动 API 服务和 Web GUI:
pnpm --filter @yesterday/server dev
pnpm --filter @yesterday/web dev
  1. 访问 http://localhost:5173