好吧,我是node webkit的新手,任何人都可以帮我解决下面的问题吗?
我想在节点webkit可执行程序包中使用'officegen'插件,但不适合我。请参阅以下代码。
我在这个JS放置的同一个地方有officegen文件夹。
var officegen = require('officegen/lib/index.js');
错误消息:错误:找不到模块'officegen / lib / index.js'
答案 0 :(得分:1)
要引用相同的路径,请添加./
,否则它将解析为当前或父目录中的node_modules
。
var officegen = require('./officegen/lib/index.js');