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
The browser version of the client can provide limited functionality but with a similar API.
The integration tests must be run in both nodejs and browser envs.
In the first implementation, the client uses webpack to shim http module with a browser-compatible version. This approach doesn't allow us to implement env-specific logic for the network modules, so let's consider implementing a separate http_browser_adapter that might encapsulate browser-specific network logic. The separation can be done on the code level by using a dedicated browser entry point of package.json see https://docs.npmjs.com/cli/v8/configuring-npm/package-json#browser
The text was updated successfully, but these errors were encountered:
The browser version of the client can provide limited functionality but with a similar API.
The integration tests must be run in both
nodejs
andbrowser
envs.In the first implementation, the client uses
webpack
to shimhttp
module with a browser-compatible version. This approach doesn't allow us to implement env-specific logic for the network modules, so let's consider implementing a separatehttp_browser_adapter
that might encapsulate browser-specific network logic. The separation can be done on the code level by using a dedicatedbrowser
entry point ofpackage.json
see https://docs.npmjs.com/cli/v8/configuring-npm/package-json#browserThe text was updated successfully, but these errors were encountered: