gallery-curator
v0.0.3
Published
simple photo gallery curation
Downloads
4
Maintainers
Readme
Curator
An easy way to check folders for new photos
###installation
npm install gallery-curator
###usage
var curator = require('gallery-curator')();
curator.curate('./photos');
// log the collection
console.log(curator.collection)
// result
[ { name: 'album', photos: [ [Object], [Object] ] },
{ name: 'album2', photos: [ [Object], [Object] ] },
{ name: 'album3', photos: [ [Object] ] } ]