2
我應該如何設置Locomotivejs中的coffeescript。如何在Locomotivejs中設置coffescript?
這似乎很容易,但我無法弄清楚。
我在「all.js」中設置了選項,但運氣不佳。
我想我差不多還是很遠才能把它做好。 :(
this.set("options",{coffee:true});
任何幫助表示讚賞
我應該如何設置Locomotivejs中的coffeescript。如何在Locomotivejs中設置coffescript?
這似乎很容易,但我無法弄清楚。
我在「all.js」中設置了選項,但運氣不佳。
我想我差不多還是很遠才能把它做好。 :(
this.set("options",{coffee:true});
任何幫助表示讚賞
你想添加一個server.js
文件和引導機車CoffeeScript的支持,就像這樣:
locomotive = require('locomotive')
locomotive.boot('.', 'development', {"coffeeScript": true}, (err, server) ->
throw err if (err)
server.listen(3000, 'localhost',()->
addr = this.address()
console.log('listening on %s:%d', addr.address, addr.port);
)
)
要啓動的應用程序:
$ node server
還有更多的信息請求: https://github.com/jaredhanson/locomotive/pull/44
支持lcm
命令行的--coffee選項將被添加到即將發佈的版本中。
它不應該是'server.coffee'和'咖啡服務器'嗎? – punund