初始化noflo nodejs时出错

时间:2014-05-24 19:43:00

标签: noflo

尝试设置node.js服务器时出现以下错误。我使用的是最新版本的noflo和node.js.是否有其他人在Windows上看到NoFlo的这种行为?

这是命令和错误:

* C:\ Users \ Johan \ Source \ Repos \ HelloNoFlow> node node_modules.bin \ noflo-nodejs-init --help

C:\Users\Johan\Source\Repos\HelloNoFlow\node_modules\.bin\noflo-nodejs-init:2 basedir=`dirname "$0"`*  
SyntaxError: Unexpected token ILLEGAL
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3

1 个答案:

答案 0 :(得分:1)

我相信你正在关注这个guide - 它对执行有错误的指示。

这适用于Windows:

.\node_modules\.bin\noflo-nodejs-init --help"

这是因为目标是 shell脚本而不是Javascript。执行node <shell script>无效。

注意:同样适用于启动“noflo-nodejs”。


更新(17/2/17)

  1. 指南链接已更改为https://docs.flowhub.io/getting-started-node
  2. 我不再使用使用noflo的项目,但我发现script已转换为CoffeeScript。因此,可能不再需要此解决方法