Skip to content

Instantly share code, notes, and snippets.

@wuuconix
Created February 11, 2023 07:47
Show Gist options
  • Save wuuconix/233a2bab2be22f6318e2875b6cf44ec5 to your computer and use it in GitHub Desktop.
Save wuuconix/233a2bab2be22f6318e2875b6cf44ec5 to your computer and use it in GitHub Desktop.
原生fetch获取下载速度
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
}
}
@wuuconix
Copy link
Author

snapshot:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment