Fork me on GitHub
摘要: ```js const https = require('https'); var options = { hostname: 'registry.yarnpkg.com', port: 443, path: '/', method: 'GET' }; var req = https.request(options, (res) => { console.log('stat... 阅读全文
posted @ 2016-11-04 10:39 _落雨 阅读(1627) 评论(0) 推荐(0) 编辑