You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation loads the entire file into memory and tosses it to req.write() at once. This will fail for larger files. Some sort of buffered read to req.write() needs to be implemented.