bandcamp-fetch/examples/tag/getAlbumHighlights.ts
patrickkfkan be7010c217 v1.0.0
2023-06-10 22:52:27 +08:00

14 lines
289 B
TypeScript

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));
});