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

xhrgo

v0.1.2

Published

use an xhr object for common http requests in your browser script

Downloads

16

Readme

xhrgo

(c)Bumblehead, 2013-2015 MIT-license

overview

Simple/dumb xhr object for sending requests. xhrgo is not a comprehensive solution for xhr usage. It's perfect for the most common type of request using non-chunked json, html and form-urlencoded data formats. It assumes there is one 'success' response, 200.

xhrgo uses the node.js callback convention.


install

xhrgo may be downloaded directly or installed through npm.

$ npm install xhrgo

to run tests, use npm test from a shell.

$ npm test

usage

The same parameters are used for each method:

  • type, REST type such as 'PUT', 'POST', 'DELETE', 'GET'.
  • url, the url at which the request is made
  • data, object to be stringified and sent with PUT and POST requests
  • token authorization token
  • fn callback function using node.js convention, passes err as first parameter
  • time number in milliseconds used with setTimeout to wait for a response
  1. xhrgo.quickJSON( type, url, data, token, fn, time )

    The first two parameters are required. Data is sent and received in JSON format but is passed to and returned from the method as an object.

    xhrgo.quickJSON('POST', '/hi', {hi:'b'}, null, function (err, res) {
      if (err) return fn(new Error(err));
      fn(null, res);
    }, 1000);
  2. xhrgo.quickJSONU( type, url, data, token, fn, time )

    Calls xhrgo.quickJSON, adding a unique parameter to the url to avoid cached responses.

  3. xhrgo.getTextHTML( url, fn, time )

    Makes 'GET' requests with "Content-Type" "text/html". Useful for requesting static template and text files.

    xhrgo.getTextHTML(htmlUrl, function (err, template) {
      if (err) return fn(new Error('failed load html: ' + htmlUrl));
      fn(null, template);
    });
  4. xhrgo.getTextHTMLU( url, fn, time )

    Calls xhrgo.getTextHTML, adding a unique parameter to the url to avoid cached responses.

  5. xhrgo.newRequest( )

    Returns a browser-supported xhr object. The value returned is usually new XMLHttpRequest()

  6. xhrgo.getUriAsUnique( url )

    Returns a new url with a unique parameter added.

    xhrgo.getUriAsUnique('/a.html'); // "/a.html?uid=1377988402490"
  7. xhrgo.addKeyVal( url, k, v )

    Returns a new url with key/val parameters added.

    var url = '/resource';
    url = xhrgo.addKeyVal(url, 'a', '1'); // "/resource?a=1"
    url = xhrgo.addKeyVal(url, 'b', '2'); // "/resource?a=1&b=2"
  8. xhrgo.getArgsObjAsUriStr( argsObj )

    Top-level properties of the object are returned as a key/value string. Each value is encoded. The keys are joined in alphabetical order. For more comprehensive object serialization use url-formencoded.

    xhrgo.getArgsObjAsUriStr({
      modified : 137798840249,
      currency : 'usd'
    }); 
    // "currency=usd&modifed=137798840249"
  9. xhrgo.getUriStrAsArgsObj( uriStr )

    Retuns an object with properties named and defined with values from the url. vanillaUri and hash are always named properties on the object returned.

    xhrgo.getUriStrAsArgsObj(
      "/resource/currency=usd&time=137798840249#hashvalue"
    }); 
    // {
    //   vanillaUri : '/resource/currency=usd&time=137798840249#val',
    //   hash : 'val',
    //   lastmodified : 137798840249,
    //   currency : 'usd'
    // }

license

scrounge

(The MIT License)

Copyright (c) 2013-2015 Bumblehead [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.