1.0.0 • Published 7 years ago

nwjs-downloader v1.0.0

Weekly downloads
1
License
ISC
Repository
bitbucket
Last release
7 years ago

nwjs-downloader

Module to make it easier to download NW.js

Example

var spawn = require('child_process').spawn;
var nwjsdownloader = require('nwjs-downloader');
nwjsdownloader({
    version: '0.13.3',
    arch: 'x64',
    sdk: true,
	force: false
}, function (err, exe) {
    if (err)
        return console.log('Error getting NW.js: ' + err);
    spawn(exe, ['./build'], {
        stdio: 'inherit'
    });
});
1.0.0

7 years ago