There is a way, but it’s different now. In your app installation, there’s a “resources” directory containing an app.asar
file containing the code; you have to extract it.
There may be an easier way to handle this, but here’s how I extract asar files.
- Install Node.js https://nodejs.org/
- On the command prompt, run
npm install -g asar
to install the asar compression tool -
cd
to the directory containing theapp.asar
file and run:asar e app.asar dest
That will create a new folder called dest
containing the extracted contents of the asar file. There’s a deploy/scenes
folder containing the code; you can peek at it there.