-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Milestone
Description
Some hints received by the NodeJs community:
- Reduce the size of the
Flickrclass (http://blog.izs.me/post/48281998870/unix-philosophy-and-node-js) -
Flickrclass methodsgetSetInfoandgetSetInfoPagecan be unified into a single method wheregetSetInfois the base case that downloads the first page - Use the
EventEmitterwisely: emits new tasks when a page is loaded and start to download the images as soon as possible (avoid to block the entire flow while pages gets collected). Also see Redesign to leverage streams and better command line composition #22 . - Use
prototipeto attach functions to theFlickrclass
Reactions are currently unavailable