The electron-packager docs mention three reasons why I might want to consider packaging my app into an asar archive (the Electron-specific archive format):
- Avoid issues with long path names on Windows
- Speed up
require()
calls in my code - Make it slightly harder for the end user to inspect the source code (they have to first download asar and un-archive the app)
Now, I am already using Webpack, which already bundles all my JS into one file, so:
- No long nested path names -> No long path name issues on Windows
- No
require()
calls in the code -> Nothing to speed up - I can minify and uglify the code -> Already pretty obfuscated
On the flipside, it seems to me that using asar could potentially be a risk, because it adds another layer of logic. It's an abstraction that could leak.
What am I missing?
Are there reasons why I should still consider asar, even when using Webpack?