0

I started using loopback to create an API server. It has offline sync capability built in. Can loopback framework use indexeddb for offline sync?

Jordan Kasper
  • 13,153
  • 3
  • 36
  • 55

1 Answers1

1

At the moment, loopback uses localStorage for offline storage. However, it should be reasonably easy to write a connector (adapter) for indexed db.

Disclaimer: I am a LoopBack developer working for StrongLoop.

Miroslav Bajtoš
  • 10,667
  • 1
  • 41
  • 99
  • 1
    Thanks for the answer but I would really suggest you to switch/support indexeddb since it is really better/faster and doesn't have the 5mb limit of localstorage... – user2547885 Oct 24 '14 at 22:33