Skip to content

Instantly share code, notes, and snippets.

@karl-gustav
Created August 7, 2015 07:32
Show Gist options
  • Save karl-gustav/4320afb0a045245ed8a3 to your computer and use it in GitHub Desktop.
Save karl-gustav/4320afb0a045245ed8a3 to your computer and use it in GitHub Desktop.
var fs = require('fs'),
request = require('request');
fs.createReadStream('t.js')
.pipe(request.post({
url: 'http://httpbin.org/post'
}))
.pipe(process.stdout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment