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 🙏

© 2026 – Pkg Stats / Ryan Hefner

axios-nest

v1.0.3

Published

## 为了更方便的管理接口,自己弄了这么个插件

Downloads

6

Readme

axios-nest

为了更方便的管理接口,自己弄了这么个插件

示例:

/**
 * /api/api-list.js
 */
export default {
  //直接配置`url`,默认为`get`请求
  login: "/user/login",
  //可以嵌套
  order: {
    list: "/order/list",
    info: "/order/info",
  },
  /**
   * 也可以直接配置 axios `RequestConfig`
   * 
   * 当出现`url`属性时,插件判定这是一个`RequestConfig`
   */
  upload: {
    url: "/upload/img",
    method: 'post',
    onUploadProgress: function () {
      // Do whatever you want with the Axios progress event
    },
  }
}
/**
 * /api/index.js
 */
import apiList from './api-list.js'

let axios = axios.create({
  baseURL:'./api'
});

let axiosNest = new AxiosNest(axios);

let $api = axiosNest.buildApiList(apiList);

export default $api;
import $api from '/api/index.js';

$api.login({
  data:{}
}).then();

//发起默认的`get`请求
await $api.order.list({});

//可以发起指定的请求
//插件由TS编写,使用时自带属性提示功能,嵌套再多也不怕
await $api.order.list.post(data,{});
await $api.order.list.get(params,{});

await $api.upload({
  data:formData
})

原理简述:

假如这是你提供的 api 配置对象

export default {
  login: "/user/login",
  order: {
    list: "/order/list",
    info: "/order/info",
  },
  upload: {
    url: "/upload/img",
    method: 'post',
  }
}

通过axiosNest处理后,你得到的

export default {
  login: axios,
  order: {
    list: axios,
    info: axios,
  },
  upload: axios
}

希望能帮到大家,让api管理更加整洁