0

I'm studying RxDB to use it in a NodeJS backend with GraphQL replication but I couldn't find any free opensource RxStorage with this specs in the documentation.

  • PouchDB - seems to work only with CouchDB replication (no info about GraphQL in the docs)
  • Dexie.js uses IndexedDB which is browser based
  • LokiJS also uses IndexedDB
  • Memory (I'm looking for a persistent solution)
  • IndexedDB - browser based
  • SQLite - premium
  • FoundationDB - premium

Am I missing something?

Tiago Stapenhorst
  • 708
  • 2
  • 9
  • 22

1 Answers1

1

The FoundationDB storage is not part of the premium plugins. You can use that for free. The pouchdb storage does also work for the graphql replication.

pubkey
  • 617
  • 8
  • 17