Javascript Object Database

is there any javascript object database?

Something like http://www.db4o.com/ , but for javascript?

thanks

+4
source share
3 answers

HTML5 includes an embedded SQL database . You can write a tiny ORM around it to deal only with objects.

Checkout ActiveJS and, in particular, ActiveRecord . Currently it does not use the HTML5 Web SQL database, but has plans to support it.

Also a timeless record (nowhere else a year) mentions JStorm , but I'm not too familiar with it.

Is this necessary for the client side or server side?

+1
source

If you are looking for a server-oriented object-oriented database for JavaScript, you can check out http://wakandadb.org/ They have a complete end-to-end solution for creating web / mobile applications using JS as a full stack, make sure to http: / /www.wakanda.org/

Wakanda is a good NoSQL JS object database, but it might not be very good for cloud applications that should scale soon. Scaling will be a problem, which is a plus with MongoDB, Cassandra or CouchDB databases, but these databases are not object-oriented, most of them are just JSON stores.

+1
source

Source: https://habr.com/ru/post/1309074/


All Articles