- Improving memory usage measurement for downloading 1 GB file
- Add a test for downloading a 10 GB file
- Improve Readme with Usage examples
- Update
progressbardependency to 1.3.3 (fixes availability indeno test)- Note: There is still a bug on MultiProgressBar on MacOS: deno-library/progress#15
- Add
titleoption tosimpleProgressCliRenderer
- Add streamAdapter: simpleStreamCallback => A WritableStream which can be used to pipe another stream into and get access to the chunks in a callback function
- Add streamAdapter: simpleProgressCliRenderer => A WritableStream which can be used to pipe a progress stream to render it on the cli
- add the implementation for the
progressStream: ReadableStream<string>;property on the DownstreamResponse object with Unit Tests!
- add downstream function which queries a resource on the web via fetch and returns a Downstream response, containing
- a
bodyproperty of type ReadableStream - reserved: a
progressproperty for later, which should return the progress of the download (work-in-progress)
- a