refactor: 优化dns选择

This commit is contained in:
xiaojunnuo
2020-11-09 17:14:25 +08:00
parent 6125895ae6
commit 02ab38c299
12 changed files with 76 additions and 30 deletions

View File

@@ -0,0 +1,17 @@
const https = require('https')
var options = {
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'
}
}
var request = https.get('https://api.github.com/', options, function (response) {
response.on('data', function (data) {
process.stdout.write(data)
})
})
request.on('error', function (error) {
console.log(error)
})