Node.js node-fetch APIでデータを取得する
node-fetchを使用する
Usage
インストール
実装
import fetch from 'node-fetch';
async function fetchData () {
const response = await fetch('https://nodejs.org/api/documentation.json');
const body = await response.text();
console.log(body);
}
TypeScriptを使う場合、@type
を追加する