Skip to content

☎️ A node stream that wraps xhr GET requests as a stream.

Notifications You must be signed in to change notification settings

kumavis/xhr-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

xhr-stream

A node stream that wraps xhr GET requests as a stream.

usage

var XhrStream = require('xhr-stream')

var xhr = new XMLHttpRequest()
xhr.open('GET', '/some-large-docs.json', true)
var stream = new XhrStream( xhr )

stream.pipe(somewhereAwesome)

options

url

You can specify a url and an XHR will be created for you.

var stream = new XhrStream( url )

about

forked from node-buffered-xhr-stream

About

☎️ A node stream that wraps xhr GET requests as a stream.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published