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

axios-adapter-wechat

v0.1.1

Published

基于axios扩展wechat网络请求

Downloads

9

Readme

axios-adapter-wechat

使用方式

yarn add axios-adapter-wechat

// 判断小程序环境

import axios, { AxiosAdapter } from 'axios';
import wechatAdapter from 'axios-adapter-wechat';
if (typeof wx !== 'undefined' && !!wx?.request && Object.prototype.toString.call(wx?.request) === '[object Function]') {
  // 用来判断是否小程序环境 默认 timeout = 15s
  axios.defaults.adapter = wechatAdapter as AxiosAdapter;
}

为什么要写这个库

  • 现在小程序的开发越来越多,每个小程序在网络请求方面都有官方自己的实现,但是不论在请求参数还是返回属性甚至使用习惯上,都不是很统一
  • 希望和h5、pc、node端上进行对齐
  • 相对来说有稍微看过axios的源码,而且axios的普及率比较高,如果和axios对齐,大家都比较熟悉,好上手
  • 希望通过这个库来让开发人员不论从使用习惯,api调用都和其他端对齐,在网络请求这个节点上磨平不同端所带来的影响

解决方案

  1. 使用Axios并扩展Axios的adapter方法
  2. Axios

新手上路

  1. 基于Axios的adapter方法兼容原生wx小程序网络请求(没有使用除axios以外第三方包)
  2. 兼容网络请求API与Axios一致,具体调用文档看Axios官网
  3. 返回字段与Axios保持一致,这里没有使用wx小程序返回的原生字段,方便后续其他端网络请求的扩展
  4. 目前仅扩展wx小程序网路请求

于axios不同的地方