Skip to content

Instantly share code, notes, and snippets.

@Go7hic
Forked from leizongmin/readRemoteFile.js
Created April 10, 2018 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Go7hic/71ce87c481e894154fafa92878cc105d to your computer and use it in GitHub Desktop.
Save Go7hic/71ce87c481e894154fafa92878cc105d to your computer and use it in GitHub Desktop.
Node.js 读取远程文件
var http = require('http');
/**
* 读取远程文件
*
* @param {String} url
* @param {Function} cb
* - {Error} err
* - {Buffer} buf
*/
function readRemoteFile (url, cb) {
var callback = function () {
// 回调函数,避免重复调用
callback = function () {};
cb.apply(null, arguments);
};
var req = http.get(url, function (res) {
var b = [];
res.on('data', function (c) {
b.push(c);
});
res.on('end', function () {
callback(null, Buffer.concat(b));
});
res.on('error', callback);
});
req.on('error', callback);
}
readRemoteFile('http://www.baidu.com/img/bdlogo.gif', function (err, buffer) {
if (err) throw err;
console.log(buffer.length, buffer);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment