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

zj-interceptors

v1.0.3

Published

zjkj axios 拦截器

Downloads

16

Readme

zj-interceptors 1.0.3

zjkj 平台通用axios 拦截器

安装

cdn

插件严格遵循npm 版本号规范,如果要使用cdn,推荐使用大版本的最新版本iife 版本cdn,以获取最新版本内容

// iife 版本,详见‘对不同构建版本的解释’。推荐
<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/1-last/zjInterceptors.browser.js"></script>

cdn url 解释

https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/< version >/< pkg >

version

具体版本号。

所有构建版本号可通过npm zj-interceptors里的Versions查看,或者在代码仓库查看tag

或者

1-last:表示v1 大版本的最新内容

2-last:表示v2 大版本的最新内容

pkg

构建包文件名,详见下方‘对不同构建版本的解释’

特定版本

iife 版本。

<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/< version >/zjInterceptors.browser.js"></script>

umd 版本

<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/< version >/zjInterceptors.js"></script>

如项目中已使用crypto-js cdn,可使用以下版本。详见‘对不同构建版本的解释’

iife 版本。

<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/< version >/zjInterceptors.browser.m.js"></script>

umd 版本

<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/< version >/zjInterceptors.m.js"></script>

或者

jsdelivr 在国内已被墙

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/zjInterceptors.js"></script>

大版本的最新版本

v1 的最新版本(由运维手动替换最新版本内容)

// umd 版本,详见‘对不同构建版本的解释’
<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/1-last/zjInterceptors.js"></script>
// iife 版本,详见‘对不同构建版本的解释’。推荐
<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/1-last/zjInterceptors.browser.js"></script>
// 不包含crypto-js umd 版本,详见‘对不同构建版本的解释’
<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/1-last/zjInterceptors.m.js"></script>
// 不包含crypto-js iife 版本,详见‘对不同构建版本的解释’。推荐
<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/zj-interceptors/1-last/zjInterceptors.browser.m.js"></script>

或者

jsdelivr 在国内已被墙

<script src="https://cdn.jsdelivr.net/npm/zj-interceptors@1/dist/zjInterceptors.js"></script>

npm

npm 主页

npm install zj-interceptors@1 -S

function

addDecryptInterceptor

添加加解密拦截器

addDecryptInterceptor(instance)

instance axios 实例

browser

const http = axios.create()
zjInterceptors.addDecryptInterceptor(http)

npm

注意:在项目中使用本插件应该统一使用CommonJs引入或者require 引入,否则构建打包时会把CommonJs 版本和esm 版本都打入包内(这不是插件行为,而是npm 行为,本插件为CommonJs 和esm 提供了不同的构建包,以达到最小化的目的)。

import { addDecryptInterceptor } from 'zj-interceptors'
const http = axios.create()
addDecryptInterceptor(http)

gernerateStrV1

返回生成的签名

decryptJson

解密内容

属性

VERSION

当前插件版本号

zjInterceptors.VERSION

npm

import { VERSION } from 'zj-interceptors'
console.log('VERSION', VERSION)

命令

lib 构建命令(没有删除dist 文件夹命令,注意覆盖)。

// 打包cjs、esm、umd,不包含crypto-js 的包
npm run build
// 打包 iife、umd,包含crypto-js的包
npm run build:umd

对不同构建版本的解释

| | UMD | CommonJS | ESM | IIFE | | --------------- | -------------------------------- | --------------------------- | ---------------------- | --------------------------- | | 包含crypto-js | zjInterceptors.js | zjInterceptors.common.js | zjInterceptors.esm.mjs | zjInterceptors.browser.js | | 不包含crypto-js | zjInterceptors.m.js | - | | zjInterceptors.browser.m.js | | 含义 | 全格式支持,支持浏览器等所有环境 | 基于构建工具使用,node 环境 | 基于构建工具使用 | 浏览器使用 |

对于不包含crypto-js 的 m 版包,需要使用者自己引入 crypto-js cdn 依赖(注意放在本cdn 之前)。

<script src="https://acc-static.oss-cn-hangzhou.aliyuncs.com/web/libs/npm/crypto-js/4.1.1/crypto-js.min.js"></script>

其他

本插件基于 crypto-js v4版本开发

版本更新遵循npm 版本号规范