I am interested in knowing if there are any server-side web application frameworks which integrate nicely with CouchDB? Does anyone have any experience in doing this? It seems like a dynamic language would be well-suited for playing with the JSON, but I am more interested in hearing about how it would fit in with the framework and the application's design.
|
|
|
|
|
|
|
The only web framework that dedicates itself to CouchDB is currently CouchDBKit for Python. Check out the official wiki page that lists how to get started in your language: http://wiki.apache.org/couchdb/Basics Pick the language and framework that suits you best and then use one of the light CouchDB libraries with it. It seems that things are move quite quickly at the moment for CouchDB. I'm sure there will be more frameworks out there soon with CouchDB support. I'm currently looking into building one for PHP. |
||
|
|
|
|
Depending on what you want to build CouchApp may be something to look at: It's specially designed for writing apps with CouchDB: |
||
|
|
|
|
Two frameworks that I would suggest for CouchDB are Ruby on Rails and Django. Both have a small file you can include that allows for easy interaction with CouchDB. For Ruby/Rails, this gives you the ability to write code that looks like this (code snippets yanked from here):
Python/Django lets you do the same with a relatively minimal amount of work (see here). Both of these aren't at the web framework level but they require a minimal amount of work to set up and are pretty easy to get going in Rails and Django. The Django approach still requires some packages to be installed so if you just can't do that for some reason the Rails approach is the way to go. Another good how-to on Python on Django can be found here (also lifted from the CouchDB FAQ). |
||
|
|
