node.js - nodejs https.get 方法访问国外网站
黄舟
黄舟 2017-04-17 14:40:17
0
1
560
const https = require('https');

https.get('https://www.google.com/', (res) => {
    console.log('statusCode: ', res.statusCode);
    console.log('headers: ', res.headers);

    res.on('data', (d) => {
        process.stdout.write(d);
    });

}).on('error', (e) => {
    console.error(e);
});


要想解析国外网址怎么解,已有搭建好shadowsocks的digital ocean服务器

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

Antworte allen(1)
迷茫
npm config set proxy=http://shadowsocks IP:shadowsocks端口
npm config set https_proxy=http://shadowsocks IP:shadowsocks端口
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!