2022-01-16 23:41:33 +01:00
|
|
|
const http = require("https")
|
|
|
|
const fs = require("fs")
|
|
|
|
|
|
|
|
// Could use yargs to have more validation but wanted to keep it simple
|
|
|
|
const args = process.argv.slice(2)
|
|
|
|
const FILE_URL = args[0]
|
|
|
|
const DESTINATION = args[1]
|
|
|
|
|
|
|
|
console.log(`Downloading ${FILE_URL} to ${DESTINATION}`)
|
|
|
|
|
|
|
|
const file = fs.createWriteStream(DESTINATION)
|
2022-01-26 21:40:38 +01:00
|
|
|
http.get(FILE_URL, (response) => response.pipe(file))
|