Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying on CouchDB, and really loved it. In many of the examples i saw people using mustache.js for templating. However I tried to accomplish it, but I failed. I want to how to implement this. A minimal example with CouchDB and mustache.js would be nice for me to get kick-started. I even tried the exampple on githyb but dint work for me.

Thanks

share|improve this question
1  
Please take a look at the FAQ on asking good questions here on StackOverflow. – smathy Jul 21 '12 at 21:41

closed as not a real question by undefined, Octavian Damiean, dgw, Jeremy Banks, smathy Jul 21 '12 at 21:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If you are able to launch your couchdb's HTML page (index.html) then you will be able to ref scripts and other files and load them without an issue.

mustache.js is not special, it's tempating library. if you are having trouble with mustache, yet are able to launch your couchapp, then i would suggest using icanhaz.js as it's easier to get started with and you don't need to compile your templates before using them.

using node.couchapp you can get started via:

couchapp boiler myapp
cd myapp
couchapp push app.js http://localhost:5984/my_db_that_already_exists

then open

http://localhost:5984/my_db_that_already_exists/_design/app/index.html

make the head of your index.html include a template:

<html>
<head>
<!-- more html head stuff above this -->
<script id="user" type="text/html">
  <li>
    <p class="name">Hello I'm {{ name }}</p>
    <p><a href="http://twitter.com/{{ twitter }}">@{{ twitter }}</a></p>
  </li>
</script>
<!-- more html head stuff below -->
</head>
<body></body></html>

there will already be site.js referenced in the index.html file, so you can include your own files (icanhaz.js, jquery.js) and do:

$(document).ready(function(){$('body').html(ich.user({name:"coolest name ever",twitter:"too cool for twitter"}))})

if you have your template setup right, then it'll overwrite your body's html when you load your couchapp.

share|improve this answer
thanks for the reply. Will definitely try this. – swaroopsm Jul 22 '12 at 8:50

Not the answer you're looking for? Browse other questions tagged or ask your own question.