1.1.2 • Published 2 years ago

pitchfork-bnm v1.1.2

Weekly downloads
72
License
AGPL-3.0
Repository
github
Last release
2 years ago

pitchfork-bnm

Pitchfork.com scraper that gets best new music info

Usage

The module exposes 3 methods, each of which scrapes data from the sections found here: https://pitchfork.com/best/

$ npm install --save pitchfork-bnm
const p4k = require('pitchfork-bnm');

p4k.getBestNewAlbums()
    .then((albums) => {
      console.log(albums);
});
const p4k = require('pitchfork-bnm');

p4k.getBestNewTracks()
    .then((tracks) => {
      console.log(tracks);
});
const p4k = require('pitchfork-bnm');

p4k.getBestNewReissues()
    .then((reissues) => {
      console.log(reissues);
});

Testing

$ npm test
1.1.1

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago