download-to-file

2.1.0 • Public • Published

download-to-file

Download a file to disk programmatically.

Build status js-standard-style

Installation

npm install download-to-file --save

Usage

var download = require('download-to-file')
 
console.log('Downloading to /tmp/example.html')
download('http://example.com/', '/tmp/example.html', function (err, filepath) {
  if (err) throw err
  console.log('Download finished:', filepath)
})

API

download(url, filepath, callback)

Will download the content of the given url and store it in a file specified by filepath. When done, the callback will be called with an optional error object as the first argument and the filepath as the second argument.

If the server does not return a 200 HTTP status code, the callback will be called with an error and the file will not be stored on disk.

License

MIT

Package Sidebar

Install

npm i download-to-file

Weekly Downloads

13,747

Version

2.1.0

License

MIT

Last publish

Collaborators

  • watson