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

yk-sso

v1.0.31

Published

友嘉前端登录服务

Downloads

73

Readme

1、安装 yk-sso

npm i yk-sso

2、在 main.js 中取消引入 permission.js

3、在 app.vue/main.js 中初始化

import yksso from 'yk-sso'

// 在mounted中进行初始化
yksso.init(process.env.VUE_APP_BASE_API, () => {
    this.$store.dispatch('user/getInfo')
    this.$router.push({ path: this.redirect || '/' })
})

4、修改 logout 和获取用户信息的方式

// 以模板项目为例
// @/store/user.js
import Cookies from 'js-cookie'
import yksso from 'yk-sso'

const getDefaultState = () => {
  return {
    name: Cookies.get('username') // 推荐使用cookie保存用户信息
  }
}


async getInfo({ commit, state }) {
    const { data } = await yksso.getUserInfo()
    Cookies.set('username', data.username)
    commit('SET_NAME', data.username)
},
async logout({ commit, state }) {
    await yksso.logout(() => {
      resetRouter()
      commit('RESET_STATE')
    })
 },

5、修改 request.js 的拦截器配置

import yksso from 'yk-sso'

// 在请求拦截器中
service.interceptors.request.use(
    config => {
        // other code
        // 传入config后会判断有无token,若存在token会自动写入请求头并返回
        config = yksso.getHeaderToken(config)
    }
)

// 在响应拦截器中,需要对错误码401进行特殊处理,最后logout
service.interceptors.response.use(
    response => {
        if (res.code === 401) {
            logout()
        }
    },
    error => {
        const { response } = error
        const { data } = response
        console.log('err' + error) // for debug
        if (data.code === 401) {
            logout()
        }
    }
)


function logout() {
    Message.error('登陆失效,请重新登陆!')
    store.dispatch('user/logout')
}