coffeekup as view engine with express 3

1.2k Views Asked by At

I'm trying to use coffeekup as my default template

app.set 'view engine', 'coffee'
app.register '.coffee', coffeekup.adapters.express

except app.register isn't a function it looks like. whats the migration?

3

There are 3 best solutions below

2
On BEST ANSWER

You want app.engine instead of app.register -- the guide needs to be updated.

Check out the unit tests for examples: https://github.com/visionmedia/express/blob/master/test/app.engine.js

0
On

coffeekup was Changed to 'coffeecup'

follow this link : https://github.com/gradus/coffeecup

0
On

coffeecup derivative teacup has an up to date example