0

使用 npm,我抓住了这个包。https://npmjs.org/package/phantom-crawl

我该如何运行它?-示例脚本给了我这个错误:

错误:找不到模块“./src/PhantomCrawl”

phantomjs://bootstrap.js:289
phantomjs://bootstrap.js:254 in require
example.js:3

具体来说,这条线需要改变;但不确定用于此的 nodejs 路径语法:

var PhantomCrawl = require('./src/PhantomCrawl');
4

1 回答 1

0

您需要相对于src目录运行它。因此,如果您使用本地安装,则npm install phantom-crawl需要cd node_modules/phantom-crawl先安装,然后才能运行该示例。它也恰好在该目录中。

于 2013-07-23T18:09:48.393 回答