Node.js でデータをダウンロードする方法

Node.js でデータをダウンロードする方法

Takahiro Iwasa
Takahiro Iwasa
1 min read
Node.js

Node.js でデータをダウンロードしたい場合、ネイティブの Fetch API を使用できます。

以下は TypeScript の例です。

import fs from 'fs';

export async function download(url: string, file: string): Promise<void> {
  const response = await fetch(url);
  if (!response.ok) {
    return;
  }
  const data = Buffer.from(await response.arrayBuffer());
  fs.writeFileSync(file, data);
}
Takahiro Iwasa

Takahiro Iwasa

Software Developer at KAKEHASHI Inc.
Involved in the requirements definition, design, and development of cloud-native applications using AWS. Now, building a new prescription data collection platform at KAKEHASHI Inc. Japan AWS Top Engineers 2020-2023.