.. | |||||
node_modules | |||||
.travis.yml | |||||
LICENSE | |||||
README.md | |||||
example.js | |||||
index.js | |||||
package.json | |||||
test.js |
var duplexify = require('duplexify') var http = require('http') var request = function(opts) { var req = http.request(opts) var dup = duplexify() dup.setWritable(req) req.on('response', function(res) { dup.setReadable(res) }) return dup } var req = request({ method: 'GET', host: 'www.google.com', port: 80 }) req.end() req.pipe(process.stdout)
.. | |||||
node_modules | |||||
.travis.yml | |||||
LICENSE | |||||
README.md | |||||
example.js | |||||
index.js | |||||
package.json | |||||
test.js |