node-XMLHttpRequest icon indicating copy to clipboard operation
node-XMLHttpRequest copied to clipboard

XMLHttpRequest for node.js

Results 103 node-XMLHttpRequest issues
Sort by recently updated
recently updated
newest added

To enable HTTP connectivity behind corporate firewalls, a number of tools and programming languages support HTTP/HTTPS proxies defined through environment variables: ``` HTTP_PROXY=http://proxy.com HTTPS_PROXY=https://proxy.com NO_PROXY="*.home.com,another.com" ``` [Handy description of these...

xhr.timeout = 4000; // Set timeout to 4 seconds (4000 milliseconds) xhr.ontimeout = function () { alert("Timed out!!!"); } It would be great if the above functionality is added to...

The [offending code](https://github.com/driverdan/node-XMLHttpRequest/blob/master/lib/XMLHttpRequest.js#L595): ```javascript listeners[event][i].call(self) ``` does not send any event. The result is, any code like ```javascript var request = new XMLHttpRequest(); request.open( 'GET', url, true ); request.addEventListener( 'load',...

`console.log(xhr.readyState + " " + XMLHttpRequest.DONE)` 4 undefined

When working with the xmlhttprequest-cookie library, objects created using the wrapper are not recognized as instances of XMLHttpRequest. (instanceof XMLHttpRequest). Specified "XMLHttpRequest" as the function name so that code can...

Fixed undefined exception when the setEncoding method is not available (it happens on Meteor applications using the node-modules on the client).

I first updated the tests to handle the deprecation warning that I received from node v4.2.6 for sys.puts. I wanted to make it so that developers can write apps that...

if you want to make request with ssl may you get error message if your ssl service has a self signed certificate. You can fix this simple as below. find...

Hi guys, if you want to make request with ssl may you get error message if your ssl service has a self signed certificate. You can fix this simple as...

XMLHttpRequest constants (UNSENT, OPENED, HEADERS_RECEIVED, LOADING, DONE) are present only in the instances and not in the class itself