How to download a file with Node.js (without using third-party libraries)?

后端 未结 28 1762
逝去的感伤
逝去的感伤 2020-11-22 03:37

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

28条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 04:12

    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) {}
    );
    

提交回复
热议问题