UWNetworksLab/freedom-xhr

Name: freedom-xhr

Owner: UW Networks Lab

Description: an "XMLHttpRequest" drop-in replacement using "core.tcpsocket" or "core.xhr", for Freedom apps

Created: 2015-11-03 21:13:48.0

Updated: 2017-11-14 05:56:34.0

Pushed: 2017-06-20 14:53:45.0

Homepage: https://www.npmjs.org/package/freedom-xhr

Size: 187

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

freedom-xhr NPM version

freedom-xhr is an XMLHttpRequest drop-in replacement using core.tcpsocket or core.xhr for freedom.js apps. It exposes the XMLHttpRequest 2.0 API, including support for HTTPS, ArrayBuffers, and Blobs.

Some uses for this module include

How to get it
Domain fronting URLs

freedom-xhr supports domain-fronting, i.e. setting a Host: header that does not match the destination domain. This is not allowed by ordinary browser XHR.

Applications can invoke this function directly, using setRequestHeader. However, this can be inconvenient, especially if XHR is being used via a third-party library that is not aware of domain-fronting. Therefore, freedom-xhr also supports transparent domain fronting, using URLs with a domain of the form

and.sni.part.secret.inner.domain.4.domainfront

For more information on the format, see the frontdomain package.

Sample Usage

To use freedom-xhr for all requests, you can just overwrite the global XMLHttpRequest constructor:

ttpRequest = require('freedom-xhr').coretcpsocket;

All requests will now be routed through the freedom core's TCP sockets, using an HTTP client written in pure Javascript. To use the core environment's XHR, you can instead write

ttpRequest = require('freedom-xhr').corexhr;
Compiling Built with Grunt

This project uses Grunt. If you haven't used Grunt before, be sure to check out the Getting Started guide.

Available Grunt commands

| Function | Command | Description | | ——— | ————- | ——————————————— | | Build | grunt build | Compiles. | | Tests | grunt test | Runs tests. |

License

Licensed under the MIT license. Maintained by @bemasc.

Derived from chrome.sockets.tcp.xhr by @ahmadnassri


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.