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

yftrepair

v0.1.1

Published

YY Repair CLI

Downloads

17

Readme

yftrepair

YY Repair 命令行工具,用于登录系统、查看当前用户信息、查询报修工单与巡检任务、查看任务详情。

环境要求

  • Node.js >= 18.12.0
  • npm 可用

安装

从 npm 全局安装

npm install -g yftrepair

安装后可在任意目录执行:

yftrepair --help

本地开发安装

npm install

快速开始

1) 登录

可交互登录:

yftrepair login

可使用快捷参数登录(企业账号/用户名/密码):

yftrepair login bxb/admin/123456

2) 查看当前登录信息

yftrepair whoami

3) 查询任务列表

不带参数时默认查询近 50 条报修工单和巡检任务:

yftrepair task list

按时间范围查询:

yftrepair task list --q today
yftrepair task list --q week
yftrepair task list --q month
yftrepair task list --q year
yftrepair task list --q 2026-04-01
yftrepair task list --q 2026-04-01~2026-04-07
yftrepair task list --q 2026-04-01至2026-04-07

4) 查询任务详情

yftrepair task get --id 123456

该命令会自动识别报修工单与巡检任务,并按对应详情结构展示。

5) 退出登录

yftrepair logout