I want to create an app (maybe via Electron) which will create an SQLite database file on the users device. I can code the actual creation of the databse file and tables in the app no problem, it's just everything I've read says that the sqlite module needs to be installed manually first (npm sqlite etc.). I would like the app to do that at runtime if possible, without user intervention, i.e. when the user installs the app, it creates the SQLite database file. Is that possible? Thanks.
↧