You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

node-xmlhttprequest

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-xmlhttprequest

A spec-compliant version of XMLHttpRequest

1.0.6
latest
npmnpm
Version published
Weekly downloads
26
-21.21%
Maintainers
1
Weekly downloads
 
Created
Source

node-xmlhttprequest

A spec-compliant version of XMLHttpRequest that works in NodeJS.

Install

npm i --save node-xmlhttprequest

Quick Start

import { XMLHttpRequest } from 'node-xmlhttprequest'

const xhr = new XMLHttpRequest()
xhr.open('GET', 'https://example.com')

xhr.onreadystatechange = () => {
	if (xhr.readyState === XMLHttpRequest.DONE) {
		const html = xhr.responseText
		const statusCode = xhr.status
		const statusText = xhr.statusText
	}
}

xhr.send()

Synchronous XHR Calls

Synchronous XHR requests work too, without writing files as other packages do. Note that it does use worker threads.

Warning This option is only left in for compatibility reasons. It is not recommended for any reason as it will block the thread.

import { XMLHttpRequest } from 'node-xmlhttprequest'

const xhr = new XMLHttpRequest()
xhr.open('GET', 'https://example.com', false) // <-- note the false parameter
xhr.send()

assert(xhr.readyState === XMLHttpRequest.DONE)
const html = xhr.responseText
// ...

Relative URLs

Note A relative URL is a URL that only contains a path.

Relative URLs do not behave the same as the browser. You must use undici to set a relative url, otherwise an error will be thrown.

import { XMLHttpRequest } from 'node-xmlhttprequest'
import { setGlobalOrigin } from 'undici'

setGlobalOrigin('https://example.com')

const xhr = new XMLHttpRequest()
xhr.open('GET', '/api/ping')

xhr.onreadystatechange = () => {
	if (xhr.readyState === XMLHttpRequest.DONE) {
		xhr.responseURL // https://example.com/api/ping
	}
}

xhr.send()

Keywords

XMLHttpRequest

FAQs

Package last updated on 26 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts