CornerCouch
CornerCouch copied to clipboard
CornerCouch - AngularJS module for CouchDB
Consequentially CornerCouch will no longer support newer versions of AngularJS from about 1.5.9 (at which point the deprecation seems to have become non-support). I now see this error with AngularJS...
This would be convenient for use with npm - currently with no package.json, I can't install CornerCouch even direct from the git repository (which npm supports only if there is...
is this possible with CornerCouch? I would like to PUT this sample object {"_id": "org.couchdb.user:wubble","name": "wubble","roles": [],"type": "user","password": "tubble"} and create new user
Current implementation suppose that _list function return `rows` field. This is not always correct. Please, review this implemetation. It introduces `db.data` if returned data does not contain `rows` field.
I get the following error when I try to call db_obj.getDoc(id): `Uncaught SyntaxError: Unexpected token :` I am able to get the expected document object if I create a new...
Not an issue, really a question - how do I create a custom view? e.g. ``` function(employee, meta) { if (employee.pin == appPinCode) { emit(employee.firstName,employee.lastName); } } ```
Had some hickups to get CORS running properly on Iris Couch. The GUI tools didn't cut it and this set of commands did the trick: ``` curl -X PUT http://username:[email protected]/_config/httpd/enable_cors...
I believe you should provide some information regarding enabling JSONP on couchdb. So that the JSONP call made by user should not get error out if server returns JSON data....
Hello, thank you very much. CornerCouch makes it very easy to access CouchDB from AngularJS. However, I have a question regarding $scope.server.getDB('dbname'): I'm using it within a CouchApp. I would...
One approach for getting started and understanding AngularJS + CornerCouch + CouchDB (the one I'm trying) is replicating http://eddelplus.iriscouch.com/gbook1 into ones own Couch instance, and modifying the example to ones...