CouchApps are JavaScript and HTML5 applications served directly from CouchDB.
8
votes
2answers
1k views
CouchApp vs Node.js
On the frontend Im using Sproutcore.
The question is how the backend is going to look like.
Solutions:
CouchApp
Node.js between Sproutcore and CouchDB
Could CouchApp really replace Node.js on ...
6
votes
2answers
329 views
Learning resources for Couchapp, Mustache.js, Evently, CouchDB
What are some of the good learning resources that you have come across aiding your application development in CouchApp stack including Evently and Mustache.js?
5
votes
1answer
137 views
CouchDB: Single document vs “joining” documents together
I'm tryting to decide the best approach for a CouchApp (no middleware). Since there are similarities to my idea, lets assume we have a stackoverflow page stored in a CouchDB. In essence it consists of ...
5
votes
2answers
688 views
User Signup in Couchapp/CouchDB through jquery.couch.js or Otherwise
Background
Right now, I'm trying to build an app with couchDB/couchapp that would store persistent and crucial information from the user, and am stuck on the steps required for user signup with ...
5
votes
1answer
423 views
CouchDB / NoSQL and Domain Driven Design?
Doing some research in getting ramped up for a CouchApp project.
I understand the concept of a Document Data Store vs a regular RDBMS. And I can totally grasp modeling documents and views instead of ...
5
votes
2answers
671 views
how to get jquery.couch.app.js to work with IE8
I have tested this on Windows XP SP3 in IE7 and IE8 ( in all compatibility modes ) and Windows 7 Ultimate in IE8 (in all compatiblity modes) and it fails the same way on both. I am running the latest ...
4
votes
1answer
242 views
How does a user login to a couchapp that has a reader role defined?
I deployed my application via Couchapp, which means that the whole application is being served out of the database. I don't want the data in the Couchdb database to publicly available, so I specified ...
4
votes
3answers
431 views
Is there a simpler Couchapp than Couchapp?
Specifically, I am finding "evently" to be a bit of a hurdle to getting started with Couchapp. I really like the idea of an App served from CouchDB, but I want to get started without having to figure ...
4
votes
3answers
293 views
Couchapp directory structure, updates?
when generating a new couchapp, I get this structure:
appname
├── _attachments
│ └── style
├── evently
│ ├── items
│ │ └── _changes
│ └── profile
│ └── profileReady
│ └── ...
4
votes
2answers
219 views
Problem listing documents in a CouchApp
I am in a bit of trouble as I am not able to find resources and/or tutorials that give me enough knowledge how to do this properly:
I am building a Couchapp uppon a contact database. For this I need ...
4
votes
2answers
755 views
CouchDb choice - CouchApp without Server side?? or CouchDB backend with xdomain issues?
Ok so I have been playing with CouchDB and CouchApp for a little while now. I am planning on using it for a new web site project I'm working on.
1) From a scalability viewpoint I love the idea of ...
3
votes
1answer
26 views
CouchApp cannot retrieve key/value pairs from view but Futon can
I create a simple couchapp and deployed it into my CouchDB instance. However, i'm noticing an anomaly. The view created (via couchapp generate view ...) returns data when I view it in CouchDB's Futon ...
3
votes
1answer
159 views
CouchApp user registration
I'm building a standalone couchdb application. These are called couchapps. The idea is that the database itself is served on port 80 and returns HTML and works as the actual website. This is a very ...
3
votes
1answer
60 views
how to reference database item attachments in couchapp
I'm learning couchapp and it looks pretty easy to query database items.
But I have items with attachments, and I'd like to add hyperlinks to the attachments:
<a ...
3
votes
2answers
76 views
Trouble with getting a CouchApp to output the correct mime type for an appcache
So in CouchDB, you can supposedly change mime types. In Futon you just have to go and edit the source of the document and change the content_type field on attachments in the _attachment field. Trouble ...
3
votes
2answers
50 views
Reusing passwords from ~/.couchapp.conf for different applications' .couchapprc
The manual at http://couchapp.org/page/couchapp-config says that you can store passwords in ~/.couchapp.conf. However, the db url is acutally the url to the specific database. If there are two ...
3
votes
1answer
66 views
rewrite rules that converts tokens to integer parameters
After much wrestling with the idea of ranking records, I finally settled on numeric based scores for my documents, which I emit to have them sorted based on these scores.
Now these numbers have ...
3
votes
1answer
137 views
null key in from map/reduce result in couchdb
For some reason I'm only getting a null key from map/reduce result in couchdb on mac
Result:
{"rows":[
{"key":null,"value":2224}
]}
Im using couchapp v8.1 and couchdb v1.0.2
My map function is:
...
3
votes
1answer
146 views
Analytics counter using sofa and couchApp
Couch has a REST interface.
This means that data-updates are exclusive to PUT calls.
I'm inspecting ways to implement a humble analyics counters, and came accross the features of couchdb, sofa and ...
3
votes
2answers
448 views
Is Couchapp a realistic substitution for a web framework?
Assuming you're going to use couchdb, is it realistic to try to just use couchapp in place of django, rails, or asp.net mvc? What would be the benefits and drawbacks?
3
votes
1answer
353 views
How to create a users database in a couchapp with per user database security model? (per document read access)
Hi I read about two ways for implementing per-document read access for couchapps:
Each user gets his own database which contains only data this user is allowed to read. Then all users write to a ...
3
votes
1answer
147 views
access session information from couchdb views
I'm new to couchdb/couchapp. I'm wondering if it's possible to access _session information from couchdb views. For example:
function(doc) {
if (doc.username == session.userCtx.name) {
...
3
votes
1answer
1k views
session and security in couchapp/couchdb?
i'm new to couchapp and couchdb..
i have some questions :
how to make session in couchapp from myown db (not "_users")
how to retrieve that
how to parsing data from document
i can do it with view, ...
3
votes
2answers
168 views
Is it possible to make CouchApp send requests autonomously?
I want to write very simple app, witch monitors states of some sites. I also want to make it in Couchapp style without using any environment except CouchDB.
So the question is how I can make CouchApp ...
2
votes
1answer
18 views
Pulling a Replicated CouchApp
My colleague did
couchapp push
to my local couchdb and I can now access the index.html via localhost
However, now I want to pull the couchapp down to my local file system so I can make edits and ...
2
votes
1answer
88 views
Couchdb, couch-connector and multiple databases
I'm wondering if anyone has tried the get couch-connector to work with multiple databases.
I have couchapp which uses multiple databases and I'm having trouble with couch-connector to work with it. ...
2
votes
1answer
42 views
Couchapps and Users handling
I have an instance of couchdb where I want to deploy two couchapps.
So far for registering user, I see that the rule of thumb is to use the authentication_db defined in the configuration file under ...
2
votes
1answer
64 views
Why does evently suggest $$(this) to save state?
As explained here, to save state which must be accessible in different events, $$(this) is recommended, like this:
$$(this).filters = "myvalue";
What does that syntax mean? Why $$ (double dollar)? ...
2
votes
1answer
79 views
Couchdb and Sofa Help
I'm new to Couchdb just a few week back I git clone the couchdb app called sofa [what and app] . Over the week It was going great but suddenly today I stumble upon something.
Here what I meant
...
2
votes
1answer
74 views
How to get SUM of all CouchDB values?
How to extract SUM depending on ID or something, with goal of getting SUM of all values?
I am able to get all values but canot SUM beacouse its a single variable, so there must be some kind of ...
2
votes
1answer
51 views
CouchDb - Prevent couchDb from delivering a view
I made a list to filter view result because of security issues. The list filters a defined view in the database according to the user session attributes. Thats exactly what I wanted.
Example Uri: ...
2
votes
2answers
358 views
CouchDB Replication to and from Android
I'm new to Android and CouchDB and have a few questions.
Is it actually possible to replicate the contents of a Windows CouchDB database to Android without developing some sort of app?
CouchApp is ...
2
votes
1answer
391 views
Simple CouchDB + jQuery mobile app loads list fine in desktop browsers, just not mobile
I'm trying to write my first Couchapp with jQuery mobile. In every desktop browser I tested (IE/FF/Chrome/Safari), the app functions exactly as intended. But when I try the same page in any mobile ...
2
votes
1answer
121 views
CouchApp views show up will null results
I am new to CouchDB, but I am coming up empty trying to Google for this.
I have a view which has a result set of 2 documents when viewed from the DB
...
2
votes
2answers
140 views
Error when trying to couchapp push code that I updated from team's Git repo
[CRITICAL] nothing to repeat
The above is the error that I get when I tried to push the code in my couchDB. It was all working well until I tried to pull changes from Git repository that our team ...
2
votes
1answer
172 views
CouchDB: Get server-time with an http request in CouchApp
I need the server-time for "user-is-online" stats in my CouchApp. I work with jquery.couch.js and would prefer to have a url, e.g. /db/_design/app/time - which gets me a timestamp.
How do I realize ...
2
votes
2answers
235 views
Where should you store templates in your couchapp?
In the couchDB guide, Managing Design Documents, they state that
The _attachments directory contains files that are saved to the Sofa design document as binary attachments. CouchDB serves ...
2
votes
1answer
143 views
Serving static HTML from CouchDB
I've got a CouchDB server up and running serving basic API requests. Overall it works well because users can GET/POST/PUT etc. to the host 'api.example.com'. The only issue is that if a user does a ...
2
votes
1answer
230 views
couchdb query map view and not reduce view
How do I query just the map of a view with both a map and reduce using evently?
Here is what I have so far in data.js:
function(data) {
var numRows = data.rows.map(function(r) {
return r
}); ...
2
votes
1answer
377 views
Couchapp: how to store a document?
after having finished the couchapp tutorial, the last step from there has to be done: saving the created pizza.
For this I have created a JS function "saveToppings", which is executed (as the firebug ...
2
votes
1answer
242 views
Short and unique keys in CouchDB
I want to write a URL shortener as a standalone CouchApp, but I'm wondering if it is possible.
Obviously, a core requirement for a URL shortener is to have short and unique keys.
What I want is to ...
2
votes
2answers
589 views
Can node.js execute JavaScript functions pulled from CouchDB like CouchApp does? How?
The quick overview is this: for my web app I can write most of my functionality using CouchApp and CouchDB views, etc. I love the feature of CouchApp that pushes my code up to the server via ...
2
votes
1answer
258 views
Sample a large CouchDB database for local development, avoiding long view builds
CouchDB is convenient to develop (CouchApps) locally and then push into remote production. Unfortunately with production-sized data sets, working on views can be cumbersome.
What are good ways to ...
2
votes
1answer
574 views
Question on using mustache partials with couchapp and evently
I have been evaluating couchdb for a project and am using couchapp to develop the prototype. So far all I can only say it that it is an awesome tool. I have however run across a problem (which is ...
1
vote
0answers
38 views
Is it possible specify couchdb query parameters in a list based on current date?
I have a couple of documents in my couchdb formatted like this:
{ type: "event", start: "2012-02-08T19:30+01:00", title: "foo" }
There is a view that lists these documents using start as key. This ...
1
vote
1answer
35 views
couchdb - integrating a legacy authentication module to a couchapp
Is there a way I can integrate authentication from a legacy system to a couchapp?
I mean, I have a system with user-accounts and all, and it's written in some legacy languages, and it should not ...
1
vote
2answers
50 views
Can I return the new revision in the response for an update handler?
I have a CouchDB update handler and would like it to return a response similar to a regular document PUT or POST. So something along the lines of the following on a successful update.
{"ok": true, ...
1
vote
1answer
87 views
CouchApp and authentication
I have a two questions about authentication involving CouchDB. The questions are about a CouchApp with private data + a login app.
First of all I want to be sure I got this right. If you make a ...
1
vote
1answer
40 views
How to find that current url is rewritten?
That's no surprise that same couchapp can be build to work either with rewrites on or off.
I wonder, is there a way or a technique to find out on a client side whether rewrites are currently working, ...
1
vote
2answers
64 views
Couchapp returns 304 when querying a view
I am building a simple couchapp CRUD application. When I fetch a view, I get a 304 response from CouchDB. In futon, the same view returns documents.
Below is the snippet where I am querying the view ...