Evertree Inn by Thom Baylay

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.

  1. Install Node.js https://nodejs.org/
  2. On the command prompt, run npm install -g asar to install the asar compression tool
  3. cd to the directory containing the app.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.

6 Likes