We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the Client Library Generator creates a client for browser by default, but with the --node flag we can create a client for NodeJS.
--node
I've noticed the only difference between them is that the client for node imports node-fetch and ws.
node-fetch
ws
Would it be possible to have a flag, say --isomorphic, that will produce a client that imports isomorphic-fetch (or cross-fetch) and isomorphic-ws?
--isomorphic
isomorphic-fetch
cross-fetch
isomorphic-ws
I want to use the Zeus client in both platforms and I currently add those imports manually everytime I generate the client.
The text was updated successfully, but these errors were encountered:
of course
Sorry, something went wrong.
aexol
No branches or pull requests
Currently the Client Library Generator creates a client for browser by default, but with the
--node
flag we can create a client for NodeJS.I've noticed the only difference between them is that the client for node imports
node-fetch
andws
.Would it be possible to have a flag, say
--isomorphic
, that will produce a client that importsisomorphic-fetch
(orcross-fetch
) andisomorphic-ws
?I want to use the Zeus client in both platforms and I currently add those imports manually everytime I generate the client.
The text was updated successfully, but these errors were encountered: