bandcamp-fetch/examples/band/getLabelArtists.ts

14 lines
294 B
TypeScript
Raw Normal View History

2023-06-10 16:52:27 +02:00
import bcfetch from '../../';
import util from 'util';
const labelUrl = 'https://mergerecords.bandcamp.com';
const params = {
labelUrl,
imageFormat: 'art_app_large'
};
bcfetch.band.getLabelArtists(params).then((results) => {
console.log(util.inspect(results, false, null, false));
});