node-webkit-builder脚本报错,Cannot find module 'node-webkit-builder'


https://github.com/mllrsohn/node-webkit-builder


 var NwBuilder = require('node-webkit-builder');
var nw = new NwBuilder({
    files: './path/to/nwfiles/**/**', // use the glob format
    platforms: ['osx32', 'osx64', 'win32', 'win64']
});

//Log stuff you want

nw.on('log',  console.log);

// Build returns a promise
nw.build().then(function () {
   console.log('all done!');
}).catch(function (error) {
    console.error(error);
});

我是直接把打包代码写入一个js文件,然后运行这个js文件: node file.js
烦请指点下,多谢。

是需要运行npm install node-webkit-builder吗?运行这个的时候他报错说package.json里的数据(name、version之类的配置)不对


 npm ERR! Invalid version: "1.1"
npm ERR!

已成功安装module: npm install node-webkit-builder -g

node-webkit chromium nwjs

曾经是小正太 9 years, 10 months ago

需要使用builder工具,可以参考这个例子
https://github.com/mllrsohn/node-webkit-builder/tree/master/example

铃科Ω百合子 answered 9 years, 10 months ago

Your Answer