http-post
http-post copied to clipboard
Posting larger files will not work
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.