holepunchto / hyperdrive

Hyperdrive is a secure, real time distributed file system
Apache License 2.0
1.86k stars 134 forks source link

Add monitor #375

Closed MKPLKN closed 6 days ago

MKPLKN commented 2 weeks ago

Example usage:

const monitor = drive.monitor(file)
await monitor.ready()
monitor.on('update', () => {
  // object of upload/download stats, updated on each block
  console.log(monitor.uploadStats)
  console.log(monitor.downloadStats)
})