script.jsconst projects = new Promise((resolve, reject) => { fetch('https://scrapbox.io/api/projects') .then(response => response.json()) .then(json => json.projects) .then(resolve) .catch(reject) })