Tool for downloading all curated photos from unsplash.com, written in NodeJS.
$ npm install -g unsplash-downloader
$ unsplash-downloader --help
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()
See LICENSE.md