-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loading node-fetch@3 in CJS and ESM #1279
Comments
How can I move my CommonJS project to ESM?
|
Can I import ESM packages in my CJS project?Yes, but only asynchronous. The async const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args)); (the next request won't re-import node-fetch cuz modules gets cached) Another way to preload node-fetch could be to: const fetchPromise = import('node-fetch').then(mod => mod.default)
const fetch = (...args) => fetchPromise.then(fetch => fetch(...args)) if your bundler rewrites your async import to require: then have a look at: |
How do I get typing support if I'm using async import?For TypeScript users who are only after the Types, you can do: Type-Only Imports import type fetch, { Request } from 'node-fetch' (this will not import or transpile anything - this typing annotation will just be discarded) for JSDoc users, this can work: /**
* @typedef {import('node-fetch').Request} Request
* @typedef {import('node-fetch').Response} Response
*/ |
Can I import ESM packages in my TypeScript project?Yes, but you need to convert your project to output ESM. See below. |
How can I make my TypeScript project output ESM?
If you use |
I'm having problems with ESM and TypeScriptIf you have decided to make your project ESM ( |
TypeScript/WebPack/esbuild/rollup rewrites my async
|
I'm having problems with ESM and
|
Can I run a ESM file/project without a package.json?Yes. Even if you don't have a package.json and no
|
if typescript is rewriting your import statement to const _importDynamic = new Function('modulePath', 'return import(modulePath)')
async function fetch(...args) {
const {default: fetch} = await _importDynamic('node-fetch'))
return fetch(...args))
} or just update to latest NodeJS version (v18+) that has fetch built in You can also install node-fetch v2 that is still in cjs format |
Pure ESM package
node-fetch is an ESM-only module - you are not able to import it with
require()
. You don't necessary have to convert your hole project to ESM just b/c we did it. There are ways to load ESM modules in cjs package too (more about this in FAQ). You can also stay with the v2 branch - We will keep updating v2 with bug/security issues. But not so much with new features...This means you have the following choices:
Use
import fetch from 'node-fetch'
instead ofconst fetch = require('node-fetch')
to import the package. You also need to put"type": "module"
in your package.json and more. Follow the below guide.import(…)
from CommonJS instead ofrequire(…)
. This is supported in CommonJS alsoYou also need to make sure you're on the latest minor version of Node.js. At minimum Node.js 12.20, 14.14, or 16.0.
I would strongly recommend moving to ESM. ESM can still import CommonJS packages, but CommonJS packages cannot import ESM packages synchronously.
ESM is natively supported by Node.js 12.17 and later.
FAQ
ts-node
Have questions about another tools? look trough other issues or ask new ones
We will continue to update this with new solutions from other accepted answers
The text was updated successfully, but these errors were encountered: