Created
February 11, 2023 07:47
-
-
Save wuuconix/233a2bab2be22f6318e2875b6cf44ec5 to your computer and use it in GitHub Desktop.
原生fetch获取下载速度
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let res = await fetch("https://api.wuuconix.link/setu?redirect") // at this time, the header is ok | |
const bytesTotal = res.headers.get("content-length") | |
const reader = res.body.getReader() | |
let bytesRead = 0 | |
const startTime = +Date.now() | |
while (true) { | |
const { done, value } = await reader.read() | |
if (value) { | |
bytesRead += value.length | |
const nowTime = +Date.now() | |
const speed = (bytesRead / (nowTime - startTime)).toFixed(2) | |
console.log(`已经读取 ${bytesRead}B / ${bytesTotal}B ${speed}KB/s`) | |
} | |
if (done) { | |
break | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
snapshot:
