wymaganie () modułów ES nie jest obsługiwane podczas importowania palenia węzłów

// node-fetch v3 recently stopped support for the
// require way of importing it in favor of ES Modules.

// Old:
const fetch = require('node-fetch');

// New:
import fetch from "node-fetch";
RealMyth21