I have this error when I compile my code in node.js, how can I fix it?
RefernceError: fetch is not defined
This is the function I am doing, it is re
If it has to be accessible with a global scope
global.fetch = require("node-fetch");
This is a quick dirty fix, please try to eliminate this usage in production code.