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

buffer-request

v1.0.0

Published

An easy and simple http client for buffer type request

Downloads

3

Readme

Buffer-Request

一个简单好用的HTTP请求库,适用于Buffer类型的数据请求。

背景介绍

同类HTTP请求库推荐。

  1. Text-Request
  2. Promise-Text-Request

优点

由于只需要适配较少的情况,因此代码量非常少,就一个基础文件,你可以直接复制到自己的项目中。非常适合Serverless场景,减少容器冷启动时间。

安装

$ npm install buffer-request

使用

支持2种调用方式,首先引用:

const request = require('buffer-request');

第1种调用方式,直接输入请求地址和回调函数:

request(url,callback)

例如:

request('http://www.example.com',function(error,response){
    if(error){
        console.error(err)
    }else{
        console.log(response)
    }
})

这种方式默认请求方法GET,无Body。如果需要更复杂的请求形式,请使用以下第2种调用方式:

request(options,callback)

例如:

let options = {
    url:'http://www.example.com',    // 请求地址
    method:'POST',                   // 请求方法
    headers:{},                      // 请求头
    body:'{"name":"ming"}',          // 请求体
    base64Encoded:true               // 是否需要将响应主体使用base64转码
}
request(options,function(error,response){
    if(error){
        console.error(err)
    }else{
        console.log(response)
    }
})

以上两种调用方式都可以,回调函数的response是一个对象,包含statusCode,statusMessage,headers,body字段,你在使用时可以直接打印查看。