Electron Compiler is a tool that allows you to compile your electron application easily to make it an executable setup, with options for custom update and download loader, it also allows you to obfuscate your code to avoid bad attention, because yes if you do not know your code will be readable from the computer in question even with using a compilation asar it is possible to decompress it, which is why Electron Compiler offers you the posibility to make the code unreadable (Obfuscate to Maximun).
- Easy Use ✅
- Custom Settings (Name, OutputFile, Loading, Icon, ...) ✅
- Obfuscate Code ✅
In order for your Electron application to compile correctly check that in your "package.json" you have:
"start": "electron ."
"build": { // Not require (Recommanded)
"files": [
"node_modules/**/*",
"package.json"
]
}