GraftJS / jschan

JavaScript port of libchan based around streams
MIT License
157 stars 9 forks source link

send node streams as-is #18

Closed mcollina closed 9 years ago

mcollina commented 9 years ago

The top thing will be to just pass through node streams, like:

var stream = fs.createReadStream('./package.json')

sender.write( { data: stream })
mcollina commented 9 years ago

Done :tada:.

I'd merge this soon if anybody has nothing against it.