views:

131

answers:

1

Hi,

is there any javascript object database??

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

thanks

A: 

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

Checkout ActiveJS and specifically ActiveRecord. It does not use the HTML5 Web SQL database currently, but has plans on supporting that.

Also a timeless post (no year anywhere), mentions JStorm but I'm not too familiar with it.

Is it needed for client-side, or server-side?

Anurag
thanks, im not using javascript for the web, so i cannot use the html5 features, but i will check the activejs and activerecord :)thanks
Narven
you might be interested in CouchDB (http://couchdb.apache.org/) or MongoDB (http://www.mongodb.org/) if it's not client side.
Anurag