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-crowd-login

v1.0.1

Published

基于Crowd认证的YAPI登录插件

Downloads

7

Readme

yapi-plugin-crowd-login

基于Crowd认证的YAPI登录插件

安装

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

第二步:配置crowd认证登录config.json,options中的参数都是可选的

{
    "name": "crowd-login",
    "options": {
      "url": "https://example.com/crowd",
      "name": "应用name",
      "loginBtnText": "登录按钮文字"
    }
}

第三步: 添加环境变量

第二步出于安全考虑,配置文件中不支持配置应用的password,需要在环境变量中配置。

// 必须,应用password
export CROWD_PASSWORD=...

// 可选,优先级高于配置文件
export CROWD_URL=...
export CROWD_NAME=...

第三步: 重启服务器

使用

配置后登录页在默认的登录/注册按钮后面会新出现一个Crowd登录。如果配置后登录不成功请确保配置正确后并检查日志中的报错信息。

更新

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

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

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