I am currently evaluating Mongo and CouchDB for storing data points (analytics).
During my earlier interaction with CouchDB, I loved its JSONP based interface. I could perform all CRUD operations from purely JavaScript.
Just run CouchDB and write some JavaScript – no server side component needed.
When comparing this to Mongo, is there any REST interface available?
Is it possible to do CRUD purely from javascript in Mongo?
Thanks!
There is no full-blown REST interface to MongoDB, mainly because the server uses native binary protocol for efficiency. You can find few REST wrappers in official documentation (edit: MongoDB inc has now deleted this information):