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

@yonghero/autologin

v0.0.5

Published

_description_

Downloads

47

Readme

autologin

背景

多个子系统的接口鉴权信息依赖于一个登录系统,意味着子系统并无自己的登录授权,在开发环境下我们想调试子系统的功能时,必需先去测试环境上的登录系统进行登录获取权限数据,再将权限数据复制粘贴到子系统内,这样的操作无疑非常麻烦,毫不夸张的说这样的操作我已经经历上百次。

此项目的诞生正是为了解决此问题,一次声明,n次省心。

缺陷

目前只支持使用axios做为请求库的项目可以使用

用法

$ npm i @yonghero/autologin
// request.js

import { AutoLogin } from '@yonghero/autologin'

// 系统内声明的axios实例
const request = axios.create({})

// AutoLogin 为本库所导出的构造函数
// 构造函数第一个参数:存储权限的函数返回Promise<boolean>·
// 调用withAxios 采用axios作为请求库,传入实例
const autologin = new AutoLogin(getAuth).withAxios(request)

// 请求获取权限数据的接口,存储权限数据,需要返回一个Promise<boolean>
async function setToken() {
  const { token } = await request({ url: '/login' })
  sessionStorage.setItem('Bearear', token)
  return true
}

// axios 拦截器
equest.interceptors.response.use(
  response => ({}), // 请求成功的处理,此处省略,,,
  (error) => {
    // 401 代表无权限
    // 此处调用autologin 进行无感登录
    if (error.response.status === 401) {
      // 需要传递config
      return autologin(error.response.config)
    }
    // ... anyCode
  },
)