A drop-in replacement for isomorphic-fetch designed to enable fetch-mock usage in browser environments. Version 1.0.0, no release cadence defined. This package re-exports the global fetch by requiring whatwg-fetch, allowing webpack aliasing so that modules importing isomorphic-fetch will use it instead, enabling fetch-mock to intercept requests.
npm install fetch-mock-forwarderNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to alias isomorphic-fetch to fetch-mock-forwarder in webpack and use it with fetch-mock.
Configure webpack resolve.alias for 'isomorphic-fetch' as shown in quickstart.
Do not attempt to import any symbol from this package.
Ensure whatwg-fetch is not loaded separately to avoid double polyfill.
Add resolve.alias in webpack.config.js: 'isomorphic-fetch': 'fetch-mock-forwarder'
Verify webpack alias and that whatwg-fetch is installed.