Just getting started with Node.js and I'm using the Geddy framework (I like the similarity to Rails). But I'm having some trouble getting it to work properly with CoffeeScript. I see Geddy is now "supporting" coffee files. But when I start converting even the default js to coffee, I get errors:
/usr/local/lib/node_modules/geddy/lib/app.js:108
ctor.origPrototype = ctor.prototype;
^
TypeError: Cannot read property 'prototype' of undefined
at _registerControllers (/usr/local/lib/node_modules/geddy/lib/app.js:108:36)
at async.AsyncBase.runItem (/usr/local/lib/node_modules/geddy/node_modules/utilities/lib/async.js:108:10)
at async.AsyncBase.next (/usr/local/lib/node_modules/geddy/node_modules/utilities/lib/async.js:113:12)
at async.AsyncBase.execCallback (/usr/local/lib/node_modules/geddy/node_modules/utilities/lib/async.js:148:54)
at process.startup.processNextTick.process._tickCallback (node.js:244:9)
I have CoffeeScript installed, but I don't really know what else I'm supposed to do here. The documentation on this is pretty much non-existant.
Any idea what I'm missing here?