You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node 18 comes with a global fetch built-in. Node 14 will be out of maintenance end of April 2023, and Node 16 on a few months later on Sep 11. Node 18 is already the current stable release today.
Using node-fetch is a continuous pain point. Using ESM and conditional exports might help, but I think we should do a clean cut instead.
Node 18 comes with a global
fetch
built-in. Node 14 will be out of maintenance end of April 2023, and Node 16 on a few months later on Sep 11. Node 18 is already the current stable release today.Using
node-fetch
is a continuous pain point. Using ESM and conditional exports might help, but I think we should do a clean cut instead.Adding
node-fetch
is fairly simple anyway.Instead of
Developers will need to do
We can also throw a helpful error in case a global
fetch
is not defined, specific to the runtime environment.The text was updated successfully, but these errors were encountered: