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 CouchApp. The downside is that with no server side code there are some things (like oAuth authentication) that are hard to do on the client side. At somepoint I'm sure I will need some server side code of some description - I guess you can then look at nodeJS but would rather not at this point. 2) Using CouchDB as a purely backend solution while your pages are served from another server is also a great fit but the downside here is that the cross domain issues prevent you from easily using the built in CouchDb API.
So does anyone have a solution to one of these 2 downsides- Can you somehow serve server side code (even PHP would be a win) from CouchApp?? Or Can you somehow use a seperate site to serve your pages but overcome the cross domain issue??
I really am trying to keep the solution as clean (and as scalable) as possible and one of the great things about Couch is the super simple, super fast API... So I don't really want to use a wrapper around it - Unless it doesn't hinder the performance/scalability.
Your opinions would be welcome.