Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
How do you download a file?
I asked myself this question when I had to download a file from a server, programmatically.
I had to connect to a server, download a file, and store it locally.
This is the code I used:
const fs = require('fs')
const request = require('request')
const download = (url, path, callback) => {
request.head(url, (err, res, body) => {
request(url)
.pipe(fs.createWriteStream(path))
.on('close', callback)
})
}
const url = 'https://…'
const path = './images/image.png'
download(url, path, () => {
console.log('✅ Done!')
})
The code uses the fs built-in module and the request module.
request must be installed:
npm install request
Note that the request module is deprecated, which means it’s no longer maintained and no new features will be added. It can still work for existing code.