-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
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
Put a sample that illustrates helloworld usage with webpack project #53
Comments
That's what the HelloWorld sample shows (helloworldlib used with js): Are you asking about using it in a way where the helloworldlib loaded separately in the page with a script tag? |
Thanks! The helloworld example is great and amazing when use ibazel to see the 'realtime' change. You are right. if I can load helloworldlib loaded separately, I can mix the lib in other js project seamlessly. in my case, I want to use the helloworldlib in vue js project with webpack. (I checked the helloworldlib.js.zip. seems the the generated code is goog.module format. I believe closure compiler could compile it to normal js. so the gap is another build step or a parameter to tell j2cl_library the target js module format?) |
Yes, in that particular case you would want to change app.js in the sample to expose the things that you want to be available for the host page. So it would look like: goog.module('j2cl.samples.app');
var {sayHello} = goog.require('j2cl.samples.hello');
goog.exportSymbol("helloworld.sayHello", sayHello); Then in the other script you can call It would be great if somebody contributes a webpack example for this use case... |
|
direct import in webpack does not work, because the generated app is not in supported module syntax(?) obviously, with the exportSymbol, include the 'helloworld.js' in script tag will work. but in order to make it work with webpack directly. use
|
HI @swuecho , I'm trying to do the same thing. |
@Mr-struct unfortunately, I did not use j2cl any more. Follow the instruction in this issues and copy the helloworld.js to your src folder and do the import, should works. I could make a demo in near future if you still have problem to set it up. |
I use grpc-web in production. I believe grpc-web generated goog.module. but I can import grpc-web directly. https://github.com/grpc/grpc-web/tree/master/javascript/net/grpc/web Not sure how grpc-web achieve this. perhaps simiar technology can be adapted? If so, we can use the generated js module transparently. Hope someone from grpc-web can give some guidance? |
no node dependecy is required, but you have to install bazel and bazel will fetch... the whole internet. (a lot of depenency :) ) check: https://github.com/swuecho/j2cl_export_symbol_demo this will output the optimized js, without any dependency. https://github.com/swuecho/j2cl_webpack_demo demonstrate how to use it in a webpack project. the example use vue-cli, but not vue specific |
Thanks a lot for your answers 😄 |
I'm just getting started here, but the hello world example doesn't look like it would actually be runnable in a browser or in node. Wouldn't it need A complete source-to-browser example, maybe also with a little jsinterop and element2 would be super helpful for newcomers. |
I wonder if it is a possible to use j2cl to produce js lib and use it in js project.
say, If I want to use the helloworldlib in js project, how can i do that? Thanks.
The text was updated successfully, but these errors were encountered: