zserge / lorca

Build cross-platform modern desktop apps in Go + HTML5
MIT License
8.04k stars 535 forks source link

Stability question #39

Closed coloredlambda closed 5 years ago

coloredlambda commented 5 years ago

I understand Lorca does not ship with as much garbage as Electron because it uses an installed version of Chrome by the user instead of shipping with it's own version. How does it handle a situation where chrome is non-existent on the installed machine or chrome is too old on the installed machine causing some things in my web application to not function right?

Baldomo commented 5 years ago

If Chrome is not found in one of the default paths you get prompted to download it. There is no version check, honestly even if you're using ES6 or some other modern JS just transpile it to ES5 and it should work on pretty much any Chrome version

coloredlambda commented 5 years ago

Cool