エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
import fetch from 'node-fetch'; // HTMLの取得 fetch('https://github.com/') .then(res => res.text(... import fetch from 'node-fetch'; // HTMLの取得 fetch('https://github.com/') .then(res => res.text()) .then(body => console.log(body)); // JSONの取得 fetch('https://api.github.com/users/github') .then(res => res.json()) .then(json => console.log(json)); import fetch from 'node-fetch'; const url = 'https://api.github.com/users/github'; (async () => { try { const response = await fetch(url); const json = aw