Find the Electron app's package file(app.asar)
This will be located under the following directory
***C:\\Program Files\\<app_name>\\resources***
Extract the ASAR file using following command:
npx asar extract app.asar <output_directory>
This will extract the contents of the app package to the output directory.
<aside> 💡 You will find the source code, assets, and other resources used by the Electron app in the output directory.
</aside>