1.0.3 • Published 8 years ago

reverseread v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

ReverseRead

It is a module to allow you to read a file line by line from end to beginning, without having to load all the content at once at the risk of memory leak

Example:

new reverseReader('Test.txt', (err, line)=>{
    if(err){
        console.error(err)
        return
    }
    console.log( line )
})

Install :

npm install reverseRead

Warning:

Please note that empty line will not be invoked with

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago