My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more

Which one is a better offline DB for Electron App?

irraju's photo
irraju
·Aug 17, 2017

Electron desktop app that I am writing is required to be offline all the time. It is not offline first - it is entirely offline app. It should be able to save transactions (rows to the table) and show them again. No need for joins with other tables too. Table data has to be stored within the app. Application has to start from pre-filled DB data.

I know about sqlite3 which is giving troubles when built for windows.

With PouchDB, I couldn't find any good tutorial to start it with pre-filled data from a file with in the App.

Any other suggestions (preferrable JS based DB) or pointers will be highly appreciated?