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

codestar-http-request-web

v4.2.0

Published

```typescript import type {Result} from 'codestar-base' import HttpRequestWeb from "codestar-http-request-web"; class MyHttp extends HttpRequestWeb{

Readme

web环境http请求类封装

import type {Result} from 'codestar-base'
import HttpRequestWeb from "codestar-http-request-web";
class MyHttp extends HttpRequestWeb{

  baseUrl(){
    return "https://my.domain/api"
  }
  
  protected defaultTimeout(): number {
    return 10_000;
  }

  protected defaultHeaders(): { [p: string]: string } {
    return {
      "content-type": "application/json",
      "token": "***"
    };
  }

  showError(ret: Result<any>): void {
    // 如何显示错误消息
    window.alert(ret.msg)
  }
}

const myHttp = new MyHttp()
// 对于一些全局错误统一处理,这样就不必每次请求都要单独处理全局错误了
myHttp.addGlobalErrorHandle(['401','account-session-dropped'],(ret: Result<unknown>)=>{
  // 未登录,或者登录失效
  // 统一处理需要登录的情况,比如跳转到登录页面 或者弹出登录框
})
myHttp.addGlobalErrorHandle('subscription-expired',(ret: Result<unknown>)=>{
  // 订阅过期,需要重新续费,这里增加一个全局处理逻辑,比如弹出续费提示框。
})
// 发起GET请求
let locking = true
myHttp.get({
  url:'/query.do',
  query:{name:'amy'},
  success:(ret:Result<string>)=>{
    console.log('查询成功')
  },
  always:()=>{
    locking = false
  }
})
// 如果出现非GlobalError,会调用showError(ret: Result<any>): void {}
// 如果你想单独处理这个请求的错误
myHttp.get({
  url:'/query.do',
  query:{name:'amy'},
  success:(ret:Result<string>)=>{
    console.log('查询成功')
  },
  hideGlobalError:true,// true表示全局错误不执行fail回调,默认false
  fail:(ret:Result<any>)=>{
    // 如果传入了fail处理回调。如果请求失败,将不会调用HttpRequestWeb里面定义的showError方法
    
  },
  always:()=>{
    locking = false
  }
})
// 发送post请求
myHttp.post(
    {
      url:'/save.do',
      data:{...},
      success:(ret:Result<T>)=>{
        // 提交成功
      }
    }
)
// Promise风格
const ret:Result<T> = await myHttp.send('GET', {url:'',query:{...}})