awwwards

1.0.1 • Public • Published

About ⭐️

I wanted to subscribe to the one and only professional web design and development competition body on the web. Unfortunately they don't provide an RSS feed these days anymore or never have been. Although they tweet about sites and nominees all day long, I'm by far no twitter user and got never used to it. So I thought, why not lemme fix all of that crap and create an Awwwards.com parser out of it?

Install

yarn add awwwards

Usage

Just gimme ma JSON, son!

import 'Awwwards' from 'awwwards';

let awwwards = new Awwwards();

awwwards.then((sites) => {

    console.log(sites);

}).catch((error) => {

    throw error;

});

There are also static wrapper methods for all the other awards, such as:

  • Awwwards.sites_of_the_day([query])
  • Awwwards.sites_of_the_month([query])
  • Awwwards.sites_of_the_year([query])
  • Awwwards.honorable_mentions([query])
  • Awwwards.mobile_excellence([query])
  • Awwwards.developer([query])
  • Awwwards.nominees([query])

You can even use additional filters available on the awwwards website:

let nominees = Awwwards.nominees({
    technology: 'bootstrap',
    category: 'sports',
    country: 'germany',
    color: 'blue',
    tag: 'vector'
});

Example

If you just want to run the local webserver, adjust the index file to your needs an run the app like below. This will provide the rss feeds for both, awwwards winners and nominees.

npm run app

Package Sidebar

Install

npm i awwwards

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

238 kB

Total Files

13

Last publish

Collaborators

  • koelll