我有一个需要下载文件的 Node JS 应用程序,在运行时给定一个 URL。
URL 可以是http://
或https://
。
我如何最好地满足不同的协议?
目前我有:
var http = require('http');
var https = require('https');
var protocol = (parsedUrl.protocol == 'https:' ? https : http);
protocol.get(parsedUrl, function(res) {
...
});
……但感觉很笨拙。
谢谢!