我正在考虑通过玉器咖啡过滤器转换为编写我的客户端咖啡。 Express设置很简单,如下所示(在coffeescript中,我通过命令行编译):
app.get '/coffee/:script', (req, res) ->
script = req.params.script
res.render "../coffee/#{script}"
.jade文件可以是:
:coffee
console.log 'hello world'
我有三个问题:
(function(){
包装器的情况下编译脚本?我经常写自己的:(($)-> ... ) jQuery
,有时需要公开变量:)