java-download
v0.1.0
Published
Downloads a JVM release archive from Oracle
Downloads
41
Readme
java-download
downloads a Java JVM release package from Oracle
just electron-download by modified to get java.
This is mostly a mashup of electron-download and Java-JRE-JDK-Downloader
usage
$ npm install --global java-download
$ java-download --version=8 --type=jre
$ javadl --version=8 --type=jre --platform=linux
var download = require('java-download')
download({
version: 8,
arch: 'x64',
platform: 'windows',
cache: './zips' // defaults to <user home directory>/.java
}, function (err, path) {
// path will be the path of the file that it downloaded.
// if the file was already cached it will skip
// downloading and call the cb with the cached file path
// if it wasn't cached it will download the file and save
// it in the cache path
})