bandcamp-fetch/examples/article/getArticle.ts

14 lines
323 B
TypeScript
Raw Permalink Normal View History

2023-06-10 16:52:27 +02:00
import bcfetch from '../../';
import util from 'util';
const articleUrl = 'https://daily.bandcamp.com/best-ambient/best-new-ambient-march-2018';
const params = {
articleUrl,
includeRawData: false
};
bcfetch.article.getArticle(params).then((results) => {
console.log(util.inspect(results, false, null, false));
});