Files
JiboSDK/node_modules/electron-download/test.js

12 lines
204 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
var download = require('./')
download({
version: '0.25.1',
arch: 'ia32',
platform: 'win32'
}, function (err, zipPath) {
if (err) throw err
console.log('OK! zip:', zipPath)
process.exit(0)
})