I've been looking to use mustache or handlebars and nodejs but I have't been successful to finding a sample project online that is working.

I just need a sample skeleton structure which uses mustache as a templating engine.

My goal is to use nodejs, mustache/handlebars, less (css framework) and some good routing but haven't been able to find a good example to work off.

UPDATE

I created a project which uses less, mustache and express using some tutorial online but I'm getting an error at startup. app.js at https://gist.github.com/1237758

I'm getting TypeError: Object # has no method 'compile'

I have express, less and mustache in my node_modules.

link|improve this question

78% accept rate
I copied your app.js to a new project, ran "npm install express mustache less" and then "node app.js" and it replied with "Express server listening on port 3000 in development mode". – Richard Marr Sep 26 '11 at 10:08
Edit box timed out on me... my versions are node@0.4.7, express@2.4.6, mustache@0.3.1-dev and less@1.1.4 – Richard Marr Sep 26 '11 at 10:19
Yes I get that message too but when I open the url in browser, it gives me the error. I have the same exact versions as you except for less@1.1.3 – ed1t Sep 26 '11 at 12:43
I have created an example project with node & mustache working. See my answer below. – draevor Oct 3 '11 at 8:45
feedback

5 Answers

up vote -1 down vote accepted

I've created an example project with node & mustache: https://github.com/adrian-gheorghe/node-and-mustache

I also initially got the error you mentioned, but now everything works.

link|improve this answer
that link doesn't work. no github repo there. – ed1t Oct 4 '11 at 14:42
The bounty expired yesterday and I deleted the repo. Didn't think you'd still be looking for this after 2 days. – draevor Oct 4 '11 at 16:47
do you still have it? can you repost it? – ed1t Oct 4 '11 at 19:32
I've readded it. – draevor Oct 4 '11 at 22:55
thanks thats worked! – ed1t Oct 5 '11 at 13:39
show 1 more comment
feedback

You can use the stache module. It makes it much easier to use mustache in express. Check out the examples.

link|improve this answer
npm install stache doesn't add stache to the node_modules. It doesn't do anything. – ed1t Sep 27 '11 at 15:27
I just checked, and it does. But if npm install doesn't work for you though you can always just clone the git repo. – Donnie H Sep 28 '11 at 11:55
there is an example on stache'e git repo but that doesn't come with npm module. it just has the stache.js – ed1t Sep 28 '11 at 15:31
I've created a complete example with node & mustache - see my answer below. – draevor Oct 2 '11 at 19:22
feedback

The source of your error seems to reside in connect module, connect/lib/middleware/compiler.js but I can't reproduce the error. It is possible that you have an old connect module inside your $NODE_PATH

link|improve this answer
How do I check the version of the connect module? – ed1t Sep 28 '11 at 15:30
using node: var c = require('connect'); console.log(c.version); – aliem Sep 29 '11 at 13:11
connect version 1.7.1 – ed1t Sep 29 '11 at 14:42
watching again your code, seems that Mike Swift had the right answer. Express doesn't supports mustache right out of the box. By the way, you should paste the full backtrace, the compile function is indeed related to express's render module. (I commented your gist with my error backtrace) – aliem Sep 30 '11 at 9:11
feedback

As you have already received some answers with regard to templating I thought I would answer the routing one. Try out http://sammyjs.org/ a small web framework written in js.

Also there are some examples https://github.com/quirkey/sammy/tree/master/examples/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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