如何在hapi.js中管道流回复

时间:2015-06-30 06:10:27

标签: javascript node.js stream hapijs

我正在寻找hapi中的parllel方法

// Express + Request exmaple
function(req, res){
  request('http://example.com/image.png').pipe(res);
}

如何在hapi中管道响应?

server.route({
method:  "*",
path:    "/api/results/{date}",
handler: (request, reply) => {


    //????reply(?);



}
});  

2 个答案:

答案 0 :(得分:7)

来自另一个问题/答案:

function (request, reply) {

    Request('http://example.com/image.png')
    .on('response', function (response) {
        reply(response);
     });
}

https://stackoverflow.com/a/31222563/2573244

答案 1 :(得分:2)

如果您只需转发上游响应,则可以通过h2o2插件使用代理处理程序:

server.route({
    method: 'GET',
    path: '/upstream/file',
    handler: {
        proxy: {
            uri: 'http://example.com/image.png'
        }
    }
});