asticode / go-astilectron

Build cross platform GUI apps with GO and HTML/JS/CSS (powered by Electron)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dependency size

RRancio opened this issue · comments

Is there a way to reduce the size of the dependencies to download or build the .exe with the dependencies already included within it?

My application needs to run on a very basic internet connection and/or on an old computer. The dependencies weigh 70-74MB, which, for a program meant to be a quick and practical option, can be challenging due to the relatively high dependency size (70MB might not seem like much, but it can be significant for people with limited internet resources).

Unfortunately there's no way to reduce the size of the dependencies.

However you can include dependencies in the final .exe using the bundler.

Already, thank you