loads
Dedicated listening for xhr requests.
Last updated 10 years ago by 3rdeden .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install loads 
SYNC missed versions from official npm registry.

loads

Made by unshiftVersion npmBuild StatusDependenciesCoverage StatusIRC channel

Loads is a small helper library which automatically assigns and listens to the various of XHR event hooks and emits the corrected and normalized responses over a supplied EventEmitter instance.

Installation

This module was primary developed with browsers in mind and is released in the public npm registry. It can be installed by running:

npm install --save loads

Usage

var loads = require('loads')
  , xhr = new XMLHTTPRequest()
  , EventEmitter = require('events').EventEmitter;

var ee = new EventEmitter();
loads(xhr, ee);

ee.on('stream', function (data) {
  // data chunk received.
});

ee.on('end', function () {});

xhr.open(url);
xhr.send();

License

MIT

Current Tags

  • 0.0.4                                ...           latest (9 years ago)

5 Versions

  • 0.0.4                                ...           9 years ago
  • 0.0.3                                ...           10 years ago
  • 0.0.2                                ...           10 years ago
  • 0.0.1                                ...           10 years ago
  • 0.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 1
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |