A Node.js implementation of the WHATWG XMLHttpRequest Living Standard for non-browser environments. The XMLHttpRequest Standard defines an API that provides scripted client functionality for transferring data between a client and a server.
- WHATWG XMLHttpRequest Living Standard.
- web-platform-tests.
- Mozilla MDN XMLHttpRequest.
- The Modern JavaScript Tutorial - XMLHttpRequest.
npm install [-g] @essamonline/whatwg-xhr
With CommonJS in JavaScript,
const { XMLHttpRequest } = require('@essamonline/whatwg-xhr');
With ESM or TypeScript,
import { XMLHttpRequest } from '@essamonline/whatwg-xhr';
Source code documentation, along with a test coverage report and more relevant documents are all included under Documentation.
This software is licensed under the MIT license, see the LICENSE file.