Pergunta

I want to have a document oriented database with features like find, insert, modify and other found in MongoDB, to be be available to my browser ( Safari on iOS and Chrome on Android is good enough, actually ). We do have SQLLite but it is relational. I am ok to get even a wrapper on top of any existing storage mechanism as long as the typical operations are supported.

I have gone through :

But these are not as closed to what I am looking for. I just wonder if there are better solutions solution available ?

Foi útil?

Solução

You can try TaffyDB. Its a javasript implementation of database leveraging the associative arrays (JSON objects). So ultimately you get the document oriented database.

Also it provides nice set of functions to manipulate the data as you expected .

But as per my knowledge it doesn't have the offline storage. But i believe its possible to implement the local storage with the HTML5 localStorage.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top