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 🙏

© 2024 – Pkg Stats / Ryan Hefner

egg-cathay-sso-client

v0.0.7

Published

package.json ```json { "dependecies": { "egg-cathay-sso-client": "^0.0.6" } } ```

Downloads

4

Readme

服务器端配置

package.json

{
    "dependecies": {
        "egg-cathay-sso-client": "^0.0.6"
    }
}

config/config.default.js

exports.ssoClient = {
    HOST: 'http://sso.cathay-ins.com.cn',
    mock: false,
    admin: [
        /^\/api\/v[\d]+/,
    ]
};

配置admin路径后,所有admin路径的api请求都会被强制校验单点登陆,如果未登陆,则返回401

备注:hosts配置

10.91.88.49 sso.cathay-ins.com.cn

config/plugin.js

exports.sso = {
  enable: true,
  package: 'egg-cathay-sso-client'
};

客户端配置

html中增加ddLogin.js文件

 <script src="http://g.alicdn.com/dingding/dinglogin/0.0.2/ddLogin.js"></script>

其中,浏览器端,PC页面如果使用cathay-fetch,那么会自动弹出登陆框

程序中使用

开发人员可以方便的通过ctx.user获取当前登陆用户的信息, 其中ctxKoa.Context

ctx.user demo:

{
    'ID': 1250,
    'name': '江千琴',
    'username': '0100007458',
    'mobile': '18817350578',
    'email': '[email protected]'
}

关于egg插件

详细参考:egg插件官方文档

HISTORY

  • 0.0.6
    • username支持中文编码, 支持花名登陆
  • 0.0.4
    • delete SKIP-SSO for testunit, mock config can be an alternative
    • fix bug of mock
  • 0.0.1
    • first release, copy form cxinscn-devops(cxinscn-employee)