Use of isomorphic-fetch mutates global fetch
unnecessarily, causing problems with other libraries
#259
Labels
SDK
Issue pertains to the SDK itself and not specific to any service
The isomorphic-fetch dependency mutates the global
fetch
value. This causes problems with some other libraries that also do this in some other way. For example, allfetch
calls from this SDK failed when I loaded the cohere-ai library, which also mutatesglobal.fetch
(I have raised an issue there too).It appears that this isn't necessary, as the
fetch
call is only used in 2 places (excluding examples) across the entire codebase: circuit-breaker.ts and http.ts. These can be trivially migrated to using an importedfetch
(see below) that avoids mutating the global value, which is actually already done in url-based-x509-certificate-supplier.ts.Also, the dependence on both
isomorphic-fetch
andnode-fetch
appears to be redundant (the former loads the latter on Node.js). I would suggest replacing both with fetch-ponyfill instead, which is recommended by the authors of isomorphic-fetch; it doesn't mutate the builtin, and provides bothwhatwg-fetch
for browsers andnode-fetch
for Node.js. (It appears that node-fetch is also only used in 1 place.)The text was updated successfully, but these errors were encountered: