Skip to content
This repository has been archived by the owner on Jan 11, 2018. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 576 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 576 Bytes

unsplash-downloader

Tool for downloading all curated photos from unsplash.com, written in NodeJS.

Usage

CLI

$ npm install -g unsplash-downloader
$ unsplash-downloader --help

Programmatically

const UnsplashDownloader = require('unsplash-downloader')

UnsplashDownloader.on('error', (error) => {
  console.error(error)
})

UnsplashDownloader.on('progress', (progress) => {
  console.log(progress)
})

UnsplashDownloader.on('done', () => {
  console.log('Done')
})

UnsplashDownloader.download()

License

See LICENSE.md