我在Windows 8.1上运行cleverstack.io框架,当我运行命令时:
$ clever init my-app
以下错误输出:
events.js:72
throw er; // Unhandled 'error' event
^
Error: spawn ENOENT
at errnoException (child_process.js:988:11)
at Process.ChildProcess._handle.onexit (child_process.js:779:34)
cleverstack框架安装时没有错误消息,然后我认为安装正确。
答案 0 :(得分:0)
此错误已在cleverstack-cli的1.0.0版本中修复,请参阅the release和this pull request以获取有关该版本及更改内容的更多信息。
运行以下命令以安装最新版本的cleverstack-cli
npm install -g cleverstack-cli
安装最新版本的CleverStack CLI后,再次运行init命令
clever init my-app
命令运行完毕后,要启动应用程序,请运行以下
cd my-app
clever serve
// Visit http://localhost:9000 to see your new application