I'm getting this error and I don't know why...
(node:5995) UnhandledPromiseRejectionWarning: Error: Request failed with status code 404
at createError (/rbd/pnpm-volume/04410727-134b-45fc-bd85-405c5d9cfcc1/node_modules/kitsu/node_modules/axios/lib/core/createError.js:16:15)
at settle (/rbd/pnpm-volume/04410727-134b-45fc-bd85-405c5d9cfcc1/node_modules/kitsu/node_modules/axios/lib/core/settle.js:17:12)
at IncomingMessage.handleStreamEnd (/rbd/pnpm-volume/04410727-134b-45fc-bd85-405c5d9cfcc1/node_modules/kitsu/node_modules/axios/lib/adapters/http.js:260:11)
at IncomingMessage.emit (events.js:327:22)
at endReadableNT (internal/streams/readable.js:1327:12)
at processTicksAndRejections (internal/process/task_queues.js:80:21)
This is my .js code:
const Kitsu = require('kitsu');
const kitsu = new Kitsu();
kitsu.get("Naruto").then(anime=>{
console.log(anime)
})
I'm getting this error and I don't know why...
This is my .js code: