我可以直接从 node.js 运行 .coffee 文件吗?
我正在做一些教程,并且我正在用 CoffeeScript 编写所有内容。然后我必须编译为 JS 然后在 node.js 中执行。有什么办法可以直接做吗?
I'm doing some tutorials and I'm writing everything in CoffeeScript. I then have to compile to JS then execute in node.js. Is there any way to do it directly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。
它将直接运行 Node,而不生成任何 .js 文件。
参考
更新:
Coffee 现在还支持
--nodejs
。上面的代码与上面的代码相同,但是,
-n
更短。Yes you can.
It will run Node directly without generating any .js files.
Reference
Update:
Coffee now also supports
--nodejs
. The above does the same asBut yeah,
-n
is way shorter.如果您有 npm,请使用它从节点提示符安装 Coffeescript: http://jashkenas.github.com /coffeescript/#installation
然后,从节点提示符处,您可以简单地使用 Coffee 命令来执行:
并且,要进行编译,请传递
-c
标志:If you have npm, use it to install coffeescript from a node prompt: http://jashkenas.github.com/coffeescript/#installation
Then, from the node prompt, you can simply use the coffee command to execute:
And, to just compile, pass the
-c
flag: