bandcamp-fetch/examples/tag/getAlbumHighlights.ts

14 lines
289 B
TypeScript
Raw Permalink Normal View History

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