How to access part of an HDF5 file from Node.js using HTTP range requests?
I’m trying to access an HDF5 file that is hosted at a URL, but I can’t download the whole file since I’m working with files up to 50GB in size. Instead, I want to use HTTP range requests to slice through them. Is there a good tool for doing this from a Node.js server? I know that Python’s h5py is capable of doing this well, so my backup plan is to set up a Python web server for doing this instead.