0.0.3 • Published 10 years ago

gallery-curator v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

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] ] } ]