In order to provide a service for webmasters, I need to download the public part of their site. I'm currently doing it using wget on my server, but it introduce a lot of load, and I'd like to move that part to the client side.
Does an implementation of wget exists in Javascript?
If it exists, I could zip the files and send them to my server for processing, that would allow me to concentrate on the core business for my app.
I know some compression library exists in Js (such as zip.js), but I was unable to find the wget counterpart. Do you know something similar?