npm.io
1.0.1 • Published 6 years ago

line-by-line-reader

Licence
MIT
Version
1.0.1
Deps
0
Size
1 kB
Vulns
0
Weekly
0

Line Reader

A promise based and zero dependency javascript package for reading contents of a file in a line by line fashion

const lineReader = require ('line-by-line-reader');

// Grab your file from its path where you have it
let filepath = "path/to/your/file";

// call lineReader function get with filepath as argument
lineReader(filepath)
  .then(fileContent => {
    console.log(fileContent);
    console.log(fileContent.lines);
    console.log(fieContent.length);
  })
  .catch(err => {
    console.log(err);
  });