使用npm,我抓住了这个包。 https://npmjs.org/package/phantom-crawl
如何运行它? - example script给了我这个错误:
错误:找不到模块'./src/PhantomCrawl'
phantomjs://bootstrap.js:289
phantomjs://bootstrap.js:254 in require
example.js:3
具体来说,这条线需要改变;但不确定要用于此的nodejs路径语法:
var PhantomCrawl = require('./src/PhantomCrawl');
答案 0 :(得分:0)
您需要相对于src
目录运行它。
因此,如果您使用npm install phantom-crawl
在本地安装,则需要cd node_modules/phantom-crawl
才能运行该示例。这恰好也在该目录中。