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 🙏

© 2025 – Pkg Stats / Ryan Hefner

yapi-plugin-autotest-copy

v1.1.0

Published

YAPI 自动化测试插件,支持设置测试计划、查看历史结果、自定义通知。

Readme

yapi-plugin-auto-test

在分组的项目导航栏中加入自动化测试标签,支持直接在项目中设置服务端测试计划。使用过程中如果碰到任何bug或有任何好的的建议欢迎issue。

安装

第一步:在config.json这层目录下运行 yapi plugin --name yapi-plugin-auto-test安装插件

第二步:如果配置代理转发可能导致无法正确获取到host的情况下,请修改config.json的配置。默认可以忽略

{
    "name": "auto-test",
    "options": {
      "host": "http://localhost:3000"
    }
}

第三步: 重启服务器

使用

测试计划

设置测试计划

用户可以自定义多个测试计划,根据对应的设置项进行测试计划的设置。

通知机器人支持目前支持企业微信机器人、钉钉机器人以及自定义webhook,如果url为空则不发送通知,邮件通知不受触发通知影响。如果是企业微信或钉钉机器人直接复制机器人地址即可。

测试结果

查看测试结果

时间轴风格的测试结果列表,支持直接查看历史测试结果。注意:测试结果页面的清空会直接清空当前计划的历史测试结果,谨慎操作。

更新

通过yapi-cli更新插件还是比较麻烦的,直接再执行一次命令并不会更新。因为yapi-cli安装插件实际上就是在vendors目录下执行npm install --registry https://registry.npm.taobao.org yapi-plugin-auto-test,所以最后会在package.json文件中记录下开始安装的版本号,再次执行安装的还是同一个版本。

执行如下操作可以进行更新:

  1. 需要先清除ykit的缓存,删除./vendors/node_modules/.ykit_cache文件夹
  2. 修改package.json里面yapi-plugin-auto-test的版本或者直接npm i yapi-plugin-auto-test@version
  3. ./vendors/目录中执行命令NODE_ENV=production ykit pack -m
  4. 在config.json这层目录下执行命令yapi plugin --name yapi-plugin-auto-test后再重启服务器就完成安装指定版本的插件

注意事项

  1. 企业微信每个机器人发送的消息不能超过20条/分钟,最新内容参考消息发送频率限制
  2. 钉钉每个机器人每分钟最多发送20条,参考消息发送频率限制

ChangeLog

v1.0.1

  • 结果通知支持更多方式

v1.0.0

  • 修复重名校验问题,只校验当前项目
  • 增加接口权限控制

v0.0.6

  • 触发通知条件支持复选

v0.0.5

  • 任务执行失败支持自动重试,重试期间中断定时执行,重试结束之后恢复定时任务

v0.0.4

  • 支持config.json中传配置

v0.0.2

  • 新增自定义通知,支持企业微信通知
  • 为保证token安全,从测试结果通知中移除token