Read a file one line at a time in node.js?

前端 未结 29 1106
深忆病人
深忆病人 2020-11-22 04:33

I am trying to read a large file one line at a time. I found a question on Quora that dealt with the subject but I\'m missing some connections to make the whole thing fit to

29条回答
  •  心在旅途
    2020-11-22 05:11

    Old topic, but this works:

    var rl = readline.createInterface({
          input : fs.createReadStream('/path/file.txt'),
          output: process.stdout,
          terminal: false
    })
    rl.on('line',function(line){
         console.log(line) //or parse line
    })
    

    Simple. No need for an external module.

提交回复
热议问题