gpt4 book ai didi

javascript - 如何构建 Cakefile 来运行 node.js

转载 作者:行者123 更新时间:2023-11-30 17:51:47 24 4
gpt4 key购买 nike

目前正在研究“Teach Yourself Node.js in 24 Hours”,我希望尽可能多地使用 CoffeeScript 而不是 JavaScript 编写代码。

同时安装了 coffee-scriptnode

我对蛋糕开发系统还是个新手——有人能告诉我如何组装一个Cakefile 来加载一个简单的服务器,比如server.coffee 为了运行演示代码?

最佳答案

您可以使用 Node's API 的任何部分在 Cakefile 中,包括 child_process用于执行命令。

child_process.spawn() ,你应该能够使用:

task 'server', 'Start up the server', (options) ->
spawn = require('child_process').spawn
child = spawn 'coffee', [ "#{__dirname}/server" ]

child.on 'error', console.error
child.on 'exit', -> console.log('exit')

关于javascript - 如何构建 Cakefile 来运行 node.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18858496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com