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

In the browser, the api looks something like this: ``` javascript $('#file').on('change', function (event) { var xhr = new XMLHttpRequest(); xhr.upload.addEventListener('progress', onProgress, false); xhr.addEventListener('load', onSuccess, false); xhr.open('POST', '/upload/audio'); fd =...

enhancement

In the README it states that XMLHttpRequest2 will be supported in version 2 of this library, which is still currently on the 1.x branch and the repo doesn't seem to...

This issue can be recreated quite simply: ``` return new Promise((resolve, reject)=>{ var xhr = new XMLHttpRequest(); //xhr.overrideMimeType("application/json"); xhr.open("GET", "test", true); xhr.onload = function(){ console.log(this.responseText); resolve(this.responseText); }; xhr.onerror = function(error){...

lib/XMLHttpRequest.js: accessable -> accessible Found with: https://github.com/ss18/grep-typos

I'd like to be able to turn off reading local files as well as limit which domains resources can be fetched from. Would there be any opposition to adding support...

https://github.com/driverdan/node-XMLHttpRequest/blob/e558b12214b134942eba13d24c79025f4850f27b/lib/XMLHttpRequest.js#L42 I have different behaviour in browser and node. I think, that is bad for "reuse of code" project target. For example, in Mozilla Firefox (57.0.4) and Chromium (63.0.3239.84 Built...

if you want to use this package with aws lambda, you need to modify the two lines: var contentFile = ".node-xmlhttprequest-content-" + process.pid; var syncFile = ".node-xmlhttprequest-sync-" + process.pid; with...

Add proper DOM event hander (addEventListener) and full event support. See [http://dvcs.w3.org/hg/progress/raw-file/tip/Overview.html](http://dvcs.w3.org/hg/progress/raw-file/tip/Overview.html).

The responseType property of the XMLHttpRequest object can be set to change the expected response type from the server. This patch can receive binary data from server with xhr.response. for...

There is an error > resolve module child_process in APP\node_modules\xmlhttprequest\lib looking for modules in APP\node_modules APP\node_modules\child_process doesn't exist (module as directory) Problem is that webpack try to build XMLHttpRequest module...