以下是我尝试在 nitrous 上为 spooky js 运行 hello.js 示例所采取的确切步骤。
1.我安装了phantomjs、nodejs(已经安装)和casperjs。
$ npm install -g casperjs
Casper 警告我,虽然 CasperJS 可以通过 npm 安装,但它不是 NodeJS 包,也不能需要本机 NodeJS 模块。
因此,我想使用 spookyjs,它是一个 nodejs 包。
然后,我安装了 phantom js:$ npm install phantomjs
最后,我安装了 spookyjs:$ npm install spooky
2.我尝试使用运行 hello.js 示例
$ node node_modules/spooky/examples/hello.js
3.我最终得到这个错误:
{ [Error: Child terminated with non-zero exit code 1] details: { code: 1, signal: null }
}
我做错了什么还是无法安装 casperjs?