我可以直接从 node.js 运行 .coffee 文件吗?

发布于 2024-12-03 10:12:35 字数 83 浏览 0 评论 0原文

我正在做一些教程,并且我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜柠檬 2024-12-10 10:12:35

是的,你可以。

coffee source.coffee -n

它将直接运行 Node,而不生成任何 .js 文件。

参考

更新
Coffee 现在还支持 --nodejs。上面的代码与上面的代码相同

coffee source.coffee --nodejs

,但是,-n 更短。

Yes you can.

coffee source.coffee -n

It will run Node directly without generating any .js files.

Reference

Update:
Coffee now also supports --nodejs. The above does the same as

coffee source.coffee --nodejs

But yeah, -n is way shorter.

恋你朝朝暮暮 2024-12-10 10:12:35

如果您有 npm,请使用它从节点提示符安装 Coffeescript: http://jashkenas.github.com /coffeescript/#installation

然后,从节点提示符处,您可以简单地使用 Coffee 命令来执行:

coffee <yourcoffeescriptfile>.coffee

并且,要进行编译,请传递 -c 标志:

coffee -c <yourcoffeescriptfile>.coffee

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:

coffee <yourcoffeescriptfile>.coffee

And, to just compile, pass the -c flag:

coffee -c <yourcoffeescriptfile>.coffee
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文