Hey! I had the same issue when trying to import from node-fetch. Turns out, in Node 16, you gotta use the ESM syntax. So instead of `import from node-fetch`, try `import fetch from 'node-fetch'` and make sure your package.json has `"type": "module"`.
Also, double-check if you’re using the latest version of node-fetch. Sometimes npm installs an older version by default. Hope that helps!
Also, double-check if you’re using the latest version of node-fetch. Sometimes npm installs an older version by default. Hope that helps!
