1

I'm in the early stages of designing an Electron application that needs to be able to dynamically generate/access/modify data in a relational structure, stored completely locally. I'm hoping to find a Node package/library that can handle this, without interfacing with any external software that the user would need to download separately.

So far in my research of Node-SQL integrations I've found Knex.js — could it handle something like this?

Nico
  • 129
  • 11
  • In java there are three embedded databases (off the top of my head) that are fully included in the driver itself (H2, Derby, HyperSQL) but I'm curious if a similar solution exists for nodejs. – The Impaler Feb 04 '22 at 03:29

1 Answers1

1

SQLite3 might be what you are looking for.

typicallearner
  • 238
  • 1
  • 13
  • Yes I was just looking at this and I think it might work! Do you have any suggestions for a JS library implementation? So far I've found [better-sqlite3](https://github.com/JoshuaWise/better-sqlite3) – Nico Feb 04 '22 at 05:56