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.