newbie. I\'m using ExpressJS/Node. Here\'s my config stuff:
var express = require(\'express\'), app = express.createServer(), jade=require(\'jade\'); // Configu
Dynamic helpers has been removed from Express since 3.x.
The new usage would be app.use(express.csrf());, which comes from Connect.
app.use(express.csrf());