dsherret / dax

Cross-platform shell tools for Deno and Node.js inspired by zx.
MIT License
1.05k stars 35 forks source link

feat: `$.request` - `pipeToPath` #56

Closed dsherret closed 1 year ago

dsherret commented 1 year ago
const url = "https://dl.deno.land/release/v1.29.1/deno-x86_64-unknown-linux-gnu.zip";
await $.request(url)
  .showProgress()
  .pipeToPath("./deno-x86_64-unknown-linux-gnu.zip");

Closes #54