An open API service indexing awesome lists of open source software.

https://github.com/bonevidy/linereader

a lightweight library of nodejs lineReader
https://github.com/bonevidy/linereader

Last synced: over 1 year ago
JSON representation

a lightweight library of nodejs lineReader

Awesome Lists containing this project

README

          

# lineReader
```js
const LineReader = require('linereader');
const rd = new LineReader('./test.txt');
rd.on('newLine', (bf)=> {
console.log(bf.toString('utf8'));
})
```