How do I download a file with Node.js without using third-party libraries?
I don\'t need anything special. I only want to download a file from a giv
You can use https://github.com/douzi8/ajax-request#download
request.download('http://res.m.ctrip.com/html5/Content/images/57.png', function(err, res, body) {} );