In web browser, I want to compute sha1 checksum of a huge file in the local filesystem without sending it to a server.
File API supports to read files from local disk but I guess it reads the entire of the file and put all of them into the memory. It may occur a problem if the file is larger than system memory.
Streams API seems to be useful to solve this problem but I couldn't find how to read a file using the API.
Is there any way to read file stream from local disk using javascript in web browser?