如果我想编写 node.js 并使用 CoffeeScript,我有什么限制?我可以在 JS 中做任何我能做的事情吗?
是的,CoffeeScript 只是简单地编译成纯 JS,使其与 node.js 完全兼容。
要在节点上运行 CoffeeScripts,您可以:
coffee -c example.coffee
node example.js
coffee example.coffee