Hey! If you’re stuck on importing from node-fetch, it’s likely an ESM issue. Node 16 handles ESM differently, so you’ll need to either:
1. Add `"type": "module"` to your package.json, or
2. Use `.mjs` file extensions for your modules.
Also, check out this guide on ESM in Node.js—it’s super helpful: [link]. Let me know if you need more help!
1. Add `"type": "module"` to your package.json, or
2. Use `.mjs` file extensions for your modules.
Also, check out this guide on ESM in Node.js—it’s super helpful: [link]. Let me know if you need more help!
