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

12 lines
256 B
TypeScript

import bcfetch from '../../';
import util from 'util';
const params = {
categoryUrl: 'https://daily.bandcamp.com/best-ambient',
page: 2
};
bcfetch.article.list(params).then((results) => {
console.log(util.inspect(results, false, null, false));
});