在 Grunt-init 模板上,我想创建一个 node.js https 请求。那可能吗?
Grunt-init 控制台说:
Warning: Protocol:https: not supported
这是我要添加的代码
var http = require('http');
var fs = require('fs');
var file = fs.createWriteStream("file.txt");
var request = http.get("https://someurl.com/file.text", function(response) {
response.pipe(file);
});
谢谢。