如何在Coffeescript中实现和谐?

cie*_*bor 6 option node.js coffeescript ecmascript-harmony appjs

以下是我运行js代码的方法:

node --harmony ./data/app.js
Run Code Online (Sandbox Code Playgroud)

现在我想转向CoffeeScript.所以我尝试像这样运行它:

coffee ./data/app.coffee
Run Code Online (Sandbox Code Playgroud)

它失败了.我该如何通过此--harmony选项?

log*_*yth 15

要传递args,可以使用--nodejs参数:

coffee --nodejs --harmony ./data/app.coffee 
Run Code Online (Sandbox Code Playgroud)