xhrgo

0.1.2 • Public • Published

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 chris@bumblehead.com

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.

Package Sidebar

Install

npm i xhrgo

Weekly Downloads

0

Version

0.1.2

License

MIT

Last publish

Collaborators

  • bumblehead