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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要使用builder工具,可以参考这个例子
https://github.com/mllrsohn/node-webkit-builder/tree/master/example