| I am working on app that I wrote initialy in electron, but now have moved away from it.I have perspectives on both good and bad sides of electron The good parts Low barrier to entry - if you know javascript you are good to good. No need to learn C++ or Java for building a desktop app. Truly cross platform - any platforms that chromium supports, electron supports A very active ecosystem - The community around electron is amazing. I am a big fan of electron.build, things like code signing / auto updates etc are provided out of the box The not so good parts IPC hell Electron has a main process and renderer process and they communicate via events. I found myself swimming in the event soup very often. Easy to make mistakes This is more for a note for me or any beginner, but it is easy to write compute heavy code in the renderer and make the ui unresponsive or sluggish. There are many other things like this where it is easy to do things the wrong way. Security Electron still has a capable browser which can open any webpage. Mix that with native access and you have a remote code execution vulnerability on your hands. Bloated binaries Even the simplest of the electron binaries are large, thats just the nature of electron. Shameless plug The app that I am working on is https://loadjitsu.com, I rewrote it using golang, couldnt be happier. |
What did you move to? You mention Go, but which GUI framework? Fyne, Gio UI, bindings for GTK or Qt?