Posts

Showing posts with the label electron

Electron app with database

Electron app with database I'm creating a web app for ticket reservation. The only problem is the database. I don't want to tell my client to install XAMPP or set a database, etc. Is there any way to package the app with the database? sqlite might be an option – David784 Jun 30 at 23:21 1 Answer 1 SQLite is a good option for a local database that you can ship with your application. It won't require the user to setup or install any extra dependencies. It's certainly not as full featured as a full on server, but it should be good enough for a local desktop app. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie polic...