Denoでファイルダウンロードをする
2202 ワード
最近Denoでファイルダウンロードをする必要があったので、実装しました。
てきとうに書いたのであまり良くない書き方をしているかもなので、その時はコメントでご指摘ください。
結論
import ky from "https://deno.land/x/ky/index.js";
const url = "https://raw.githubusercontent.com/denolib/high-res-deno-logo/master/deno_hr.png";
const path = "deno.png";
ky.get(url)
.arrayBuffer()
.then(buffer => {
Deno.writeFileSync(path, new Uint8Array(buffer));
});
console.log("Completed download!");
import ky from "https://deno.land/x/ky/index.js";
const url = "https://raw.githubusercontent.com/denolib/high-res-deno-logo/master/deno_hr.png";
const path = "deno.png";
ky.get(url)
.arrayBuffer()
.then(buffer => {
Deno.writeFileSync(path, new Uint8Array(buffer));
});
console.log("Completed download!");
kyでファイルを取得し、ArrayBufferからUint8Arrayにしたあと保存しています。
やってみる
無事にダウンロードできました。
Author And Source
この問題について(Denoでファイルダウンロードをする), 我々は、より多くの情報をここで見つけました https://qiita.com/Seraimu/items/7f443d7dbfe83783d79c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .