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

c2-sso-client

v2.0.4

Published

系统X、云平台单点登录node客户端。

Downloads

34

Readme

C2SSOClient

系统X、云平台单点登录node客户端。

安装&使用

yarn add c2-sso-client
import initC2Client from 'c2-sso-client';

initC2Client({
    env: {
        // 应用类型:可选值 系统X应用:SYSTEM_X  云平台应用:CLOUD_PLATFORM
        APPLICATION_TYPE,
        // 系统X、云平台认证地址
        AUTH_URL,
        // 系统X、云平台服务地址
        TARGET_URL,
        // 客户端ID
        CLIENT_ID,
        // 客户端秘钥
        CLIENT_SECRET,
        // 云平台apiKey 云平台应用必须配置
        API_KEY,
        // 分类机构ID 系统X应用必须配置
        CATEGORY_ID,
        // 业务模块服务地址
        BUSINESS_TARGET_URL,
        // 系统X、云平台白名单配置
        WHITE_LIST,
        // 业务模块白名单配置
        BUSINESS_WHITE_LIST,
        // node服务API统一前缀
        NODE_API_PREFIX,
        // 系统X、云平台API统一前缀
        API_PREFIX,
        // 业务模块API统一前缀
        BUSINESS_API_PREFIX,
        // node服务启动端口
        NODE_SERVER_PORT,
        // 扩展配置项,可以定义任何类型的值,通过 /common/extensions 接口返回给前端应用
        EXTENSIONS: '',
    },
    staticPath: '/src/web_app',
    isDebug: true,
    isRefreshToken: false,
});

node相关接口说明

公共模块

获取客户端ID

GET /common/client-id

获取扩展配置

GET /common/extensions

用户模块

单点登录

GET /user/sso-login

query参数:

| key | 类型 | 备注 | |:-----------:|:------:|:--------------:| | redirectUrl | string | 登录完成后重定向路径 | | localUrl | string | 浏览器地址栏协议+IP+端口 |

本接口请使用浏览器地址栏访问,需要重定向到系统管理X、云平台完成登录授权。

登出

GET /user/sso-logout

| key | 类型 | 备注 | |:-----------:|:------:|:--------------:| | redirectUrl | string | 退出登录后重定向路径 | | localUrl | string | 浏览器地址栏协议+IP+端口 |

本接口请使用浏览器地址栏访问,需要重定向到系统管理X、云平台完成登出。

自定义登录

POST /user/custom-login

body参数:

| key | 类型 | 备注 | |:-----------:|:------:|:------------------------:| | account | string | 账号 | | password | string | 密码 | | type | string | 固定值:'pwd' | | sn | string | 自定义登录页面浏览器地址栏query参数(sn) | | redirectUrl | string | 登录完成后重定向路径 |

鉴权&获取用户信息

GET /user/authorization

修改密码

POST /user/update-pwd

body参数:

| key | 类型 | 备注 | |:-----------:|:------:|:----:| | userId | string | 用户ID | | newPassword | string | 新密码 | | oldPassword | string | 原密码 |

获取用户菜单

GET /user/menus

| key | 类型 | 备注 | |:------:|:------:|:----:| | userId | string | 用户ID |