在.js文件中包含node.js模块的语法?

时间:2013-07-23 17:24:10

标签: javascript node.js include npm phantomjs

使用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');

1 个答案:

答案 0 :(得分:0)

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