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
You should add this import in your file:
import * as fetch from 'node-fetch';
And then, run this code to add the node-fetch:
node-fetch
yarn add node-fetch