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

poorequest

v0.0.11

Published

http request .using for get,post,and post file.

Downloads

26

Readme

poorequest

  • NPM version
  • Build Status
  • NPM Stats
  • NPM Downloads

this is a node js http/https wrapper. in order to run under [email protected] , which is the highest node version on iPhone.

it only support basic usage ,GET/POST/MULTIPART

install

npm install poorequest

usage


	var Request=require('poorequest');
	var request=new Request();

	var callback = function(err, result){
		// err identify it succ or fail
		// if !err, result will be an object
		// result contain fiedls:
		//   herders, herders return from server,
		//   status / statusCode, statusCode return from server,
		//   body, data return from server, 
		//         you can call toString | toJson | toBuffer on body to convert it to the format you want.
		//   raw,  this is equal to body.toBuffer()
	}
	request.get|post|multi(url,option,callback);

get


	// simple get, no option is needed.
	var url='http://www.baidu.com';
	request.get(url,function(err,result){
		assert(result.body.toString().indexOf('<!--STATUS OK-->') > 0)
		// if data is simple string: call result.body.toString(), eg. most html data 
		// if response is in json format: call result.body.toJson(), eg. most ajax data 
		// if response is in binary format: call result.body.toBuffer(), eg. image data
	});

post


	//post with payload 't=12345'
	var url='http://www.wwei.cn/Qrcode/create.html';
	request.post(url,{form:{
		"t":"12345"
	}},function(err,result){
		assert(result.body.toString().indexOf('img') > 0)
		assert(Object.keys(result.body.toJson()).length == 2)
	});


	//if want to upload paylod in json format like '{"t":"12345"}', add type:json field
	request.post(url,{
		form:{"t":"12345"},
		type:'json'
	},function(err,result){
		//
	});

multipart post

    var multiForm = [];

    var fd1 = {
        name:'id',
        value:'id-value'
    };

    var fd2 = {
        name:'img',
        value:'img-value'
    };

    var fd3 = {
        name:'imgfile',
        value:'imgfile-value',
        filename:path.join(__dirname,"multifile.png") 
    };

    // add a text field
    //----------------------------06090260189957917
	//Content-Disposition: form-data; name="id"
	//
	//id-value
    multiForm.push(fd1);

    // add a text field , same as above
    multiForm.push(fd2);


    // add a file field
    //----------------------------06090260189957917
	//Content-Disposition: form-data; name="imgfile"; filename="multifile.png"
	//Content-Type: image/png
	//
	//imgfile-value
	//
	//...binary from file...
    multiForm.push(fd3);
	

    request.multi(url,{fields:multiForm},function(err,result){
      	// result.body.toString() ......
      	// result.statusCode ......
    });