awwwards-stream

Creates a readable stream of Awwwards.com data by scraping their HTML.
:warning: This is fragile and should only be used for offline experimentation / artistic purposes. It is not an official API and you should rate limit your requests to keep stress off the Awwwards servers. It may break at any point and should not be used in a live Node.js server.
Install
npm i awwwards-stream --save
Example
var awwwards = require('awwwards-stream');
awwwards({
type: 'sotd',
pages: 2,
startPage: 0
})
.on('data', site => {
console.log('%s: %s', site.title, site.url)
})
.on('end', () => {
console.log('Finished')
});
Results (from Feb 9, 2016) –
Centurion-Magazine: http://centurion-magazine.com
Active Theory v3: http://activetheory.net
A Short Journey: http://www.ashortjourney.com
Tolia - The Longest Short Films: http://tolia.ge/
Make Me Pulse 2016 Wishes: http://2016.makemepulse.com
Jérémie Battaglia: http://jeremiebattaglia.com/
Do You Still Believe?: http://www.doyoustillbelieve.com/
Red Collar: http://redcollar.digital
Publicis90: http://www.publicis90.com
A State of War: http://astateofwar.org.au
Doudou Blues: http://www.doudoublues.com/
The Grey Tales: http://thegreytales.net
Finished
Usage

stream = awwwardsStream(opts)
Returns a readable object stream that emits objects for each entry in the Awwwards data. Options:
type
(String) can be one of: sotd, sotm, nominees, mentions, trending
– defaults to 'sotd'
startPage
(Number) starting page, default 0
pages
(Number) total number of pages to scrape, default Infinity
rate
(Number) delay between successive requests, default 250 ms
The objects have this form:
{
title: String,
url: String,
thumbnail: String,
entry: String,
hearts: Number,
author: {
name: String,
entry: String,
country: String
},
rating: Number|undefined,
date: String,
developerAward: Boolean
};
License
MIT, see LICENSE.md for details.