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):
require() calls in my codeNow, I am already using Webpack, which already bundles all my JS into one file, so:
require() calls in the code -> Nothing to speed upOn 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?