前提・実現したいこと
node.jsを使用してgoogle books apiから情報取得した内を表示させたいです
発生している問題・エラーメッセージ
Error: Cannot find module 'ローカルフォルダ名' at Function.Module._resolveFilename (node:internal/modules/cjs/loader:941:15) at Function.Module._load (node:internal/modules/cjs/loader:774:27) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12) at node:internal/main/run_main_module:17:47 { code: 'MODULE_NOT_FOUND', requireStack: [] }
該当のソースコード
const fetch = require('node-fetch'); fetch('https://www.googleapis.com/books/v1/volumes?q=東野圭吾') .then(res => res.text()) .then(body => console.log(body));
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/18 12:52