Search code examples
databasewindowselectrondesktop-applicationelectron-packager

Which database is better to use with electron windows build


i am developing a standalone school management application using electron framework ,which database is better in my scenario. i mean the database should easy to manage ,easy to distribute with the application package or easy to configure it in any system. What i want to store is student details,fee details,images. etc,


Solution

  • You can use classic Mysql with an ORM like node-orm2.If you want to use local databases, I advise you to use sqlite. It's very easy to manage and to be distributed.
    Some useful links :