• This repository has been archived on 11/Jan/2018
  • Stars
    star
    114
  • Rank 298,630 (Top 7 %)
  • Language
    JavaScript
  • License
    The Unlicense
  • Created about 10 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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