/**
* Request png
*/
var request = require('superagent')
var req = request.get('http://example.com/original/' + id + '.png');
req.end(function(response){
// Here i want send responsed image to another server
req.post('http://upload-example.com').attach('???')
})
我如何通过管道传输图像文件来上传端点?我在 nodejs env 中使用最新版本的超级代理。