railsware / bozon

🛠 Command line tool for building, testing and publishing modern Electron applications
MIT License
758 stars 52 forks source link

Why do you need Webpack? #24

Closed hadees closed 7 years ago

hadees commented 8 years ago

I've had some trouble getting native modules to load correctly in webpack. I was curious why you used this instead of electron-compile and possibly electron-connect.

alchaplinsky commented 8 years ago

@hadees Webpack is used to compile and bundle all javascript files including vendor libraries for renderer process.

hadees commented 8 years ago

@alchapone I understand that part of it but I was wondering why not use something else like electron-compile. I've just had a lot of problems using webpack to load a native node module so I was hoping to try and use bozon but without webpack.

alchaplinsky commented 8 years ago

What native module do you need in renderer process?

hadees commented 8 years ago

WebChimera.js

johnvs commented 7 years ago

@hadees if this is still an issue for you, check out this solution.

hadees commented 7 years ago

@crystalOrigin thanks!