1.1.0 • Published 8 years ago

http-transport-stream v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

http-transport-stream

Executes a command using duplex http or https.

build status

npm install http-transport-stream

http-transport-stream(url)

url: where to send the POST request

Example

var http = require('http-transport-stream')
var stream = http('https://dat.myserver.edu/mydat')
stream.on('data', console.log)

How it works

http-transport-stream sends a POST request to the URL you provide.