cross-fetch
is remended by the Redux docs while isomorphic-fetch
is remended pretty much everywhere else. What's the difference between them?
cross-fetch
is remended by the Redux docs while isomorphic-fetch
is remended pretty much everywhere else. What's the difference between them?
-
2
cross-fetch
is a ponyfill module, whileisomorphic-fetch
is a polyfill module, at least based on a brief glance at their usage at the top of their respective README files. Otherwise, they're two pletely different implementations of the exact same fetch API specification. Ideally they should work no differently, other than the difference mentioned above. – Patrick Roberts Commented Feb 15, 2019 at 0:25
1 Answer
Reset to default 9isomorphic-fetch hasn't been maintained lately. The last npm update was 4 years ago, and as of now, it has 58 open issues on GitHub.
cross-fetch was updated 4 months ago and has one open issue.