Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我正在像这样运行我的应用程序,coffee app.coffee但我想知道将其编译为 javascript 然后像这样运行它是否是一个更好的选择node app.js。
coffee app.coffee
node app.js
谢谢
通过命令运行您的应用程序coffee很好,因为您的代码在传递给 Node.js 之前最初会转换为 JavaScript。重要的是要注意这是预先发生的,并且这些解析都不会在运行时发生。
coffee