标签: node.js node-webkit
我想在node-webkit中加载外部javascript节点模块。我想在我的node-webkit应用程序中添加“unzip”模块。我在“node_modules”文件夹中添加了解压缩模块文件。我使用包括这个文件 require('./node_modules/unzip.js'); 但这不起作用。我也试过这个require('unzip.js'); 但它仍然无法正常工作。我还需要做一些其他的事情来在我的应用程序中包含模块吗?
require('./node_modules/unzip.js');
require('unzip.js');