Lösung für Fehler [ERR_REQUIRE_ESM]: fordert () des ES -Moduls

// mod.cjs
const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));
Pleasant Puma