Asynchronous File Reader
File reader allows to read a file line by line. The advantage by this module is that you can write your asynchronous code in a linear way. That reduces the complexity of code. Using readFileSync could become complicated, when you should handle large files.
Another feature is, that if you do not add a callback with readLine()
the stream is posed and will not waste memory.
Usage
main .catch/* handle error in main function */ ;