I am currently developing the frontend part of my application in angularjs. I have to process files of a huge size. I read the contents of the files and send it to a backend for processing. As the files can be huge, I don't want to load all the contents of the file in one job. I would like to read the file as a stream. When a part of the file is read and processed, I read the next part of the file.
I would like to know how to read a file as a stream in angularjs ?
Thank you in advance for your answer,
Alexandre