I would like to be able to POST to my express app with a file URL and download that file to my own server.
For example, I display a list of images that are taken from a third-party and when the user clicks download, it will send a post request to this node app with the file URL (http://example.com/image.jpg) and download it to my server.
How would I do this? I apologize as I'm very new to node.