Observable in-memory database to use with | async pipe?

Hi everyone,

I come from Meteor and I used minimongo, which was a partial implementation of MongoDB as an in-memory db for the browser. Minimongo was also reactive, so we could directly display a query in the template and the template updates automatically when the query result changes.

My quest since 2 weeks is to find something like that in Angular2. I’m looking for a No-SQL in-memory DB that is observable, so I could use the Angular2 async pipe in the templates.

Does it exist ?

At the moment, I’m not aware of any observable based, in-memory storage right now. But for the most part, if you just need something for testing, I’m a fan of PouchDB and the in-memory adapter.

1 Like