在Node中请求外部流式JSON feed

时间:2019-06-21 09:42:12

标签: node.js json request streaming

Node.js中,我使用stream-chainstream-json从本地和远程资源请求流式提要。以下内容适用于本地资源,但是如何对其进行修改以允许同时使用外部资源?我需要先下载文件还是?

const fs              = require('fs');
const { chain }       = require('stream-chain');
const Pick            = require('stream-json/filters/Pick');
const { streamArray } = require('stream-json/streamers/StreamArray');

const path = './feed.json'; // External URL or local file

const pipeline = chain([
    fs.createReadStream(path),
    Pick.withParser({ filter: 'products', once: true }), // Custom: modify feed
    streamArray(),
    data => data
]);

pipeline.on('data', () => {
    counter++;
    console.log(data);
});
pipeline.on('error', error => console.log(error));
pipeline.on('end', () => console.log(`Found ${counter} entries`));

2 个答案:

答案 0 :(得分:3)

问题归结为在网络上具有可读流,并在运行时对其进行处理。

我认为这行不通,最后您只需要下载文件,然后将其作为本地文件处理即可。

有几种方法可以从网络获取文件:

var remotePath = "https://....."
https.get(remotePath, response => {
  var stream = response.pipe(file);

  stream.on("finish", function() {
    console.log("done");
  });
});

或使用请求”

request(remotePath).pipe(fs.createWriteStream('./remoteFeed.json'))

但是最后,运行时处理没有可读流。

答案 1 :(得分:1)

我认为您需要手动下载文件并进行处理。您可以使用request()函数来获取在线文件。但我同意Suryapratap。但您也可以写入文件并从同一文件读取,然后继续执行程序。例子

    request("https://reqres.in/api/users",(err, res, body)=>{
        if(err) console.log(err);
    const objectBody = JSON.parse(body)
    fs.writeFile('justtest.json',JSON.stringify(objectBody),err=>{
     if(err) throw err;
    })

     const readable = fs.createReadStream('./justtest.json', "UTF-8");

     readable.on("data", data =>{
           payload = JSON.parse(data);
           console.log(payload);
      } )

 })

您现在可以在对象中使用对象了。