Now that Electron has hit Chrome's 60s we can have proper module support. But of course, the standard (for very good reasons) prevents loading modules from file:
and it makes sense for both Electron and NW.js to adhere to the statusquo.
So if you were really excited and this bums you, don't worry, you are in for awesome things.
The future Electron eco-system offers two options for native ES modules:
-
Custom Electron protocol via Chromium's module loading subsystem
-
Custom NodeJS loaders via Node's module loading subsystem recommended
Both methods can coexist. In fact, so far from tests, it seems that at least for hybrid applications, using both methods together will be the more suitable path.
This focuses on the first.
Revision: Draft 2
I got it working with some tweaks: https://gist.github.com/jarek-foksa/0f6e82bdaf8fb1962c9e14035a8725e4
I'm still trying to figure out what should be the correct content security policy meta tag.
<meta http-equiv="Content-Security-Policy" content="script-src 'self'; object-src 'self';">
does not allow resources withapp://
protocol.