Hey guys, trying to setup a small desktop app usin...
# random
a
Hey guys, trying to setup a small desktop app using Electron. Any electron experts here? I have a few questions that I want to know if it can be/ how difficult it could be to implement before I learn electron and try building the app.
b
Not an expert, but have developed few apps with electron. Shoot your questions.
a
trying to build a productivity tracker. 1. App should open on machine start 2. should get some info from OS 3. push to DB 4.
As far as I am hearing and reading, having a UI and developing this polling kind of service is difficult to manage. So wanted to know your thoughts
b
1. This is easy to do a with a script
2. I developed an app on Windows and I could get system time easily. Not sure what other info you want
3. It is possible with electron
a
@blue-australia-25873 Just wanted to know how to achieve using electron. I have created the exe file for windows and things work great. But when I am installing the app, I need to show few screens to the user like, terms, accept auto update etc. That needs to come before installing the app. When user clicks cancel, should not install it. Now how I am trying is, after opening the exe, it installs the app, then shows the screens for settings, terms etc. If user clicks cancel and doesnt want to install, I will uninstall the app. That leads me to the next question, can we uninstall the app through code?