bandcamp-fetch/examples/getFanInfo.js
2022-06-23 20:09:44 +08:00

13 lines
272 B
JavaScript

const bcfetch = require('../lib');
const util = require('util');
const username = 'patrickkfkan';
const options = {
imageFormat: 'bio_screen'
}
bcfetch.getFanInfo(username, options).then( results => {
console.log(util.inspect(results, false, null, false));
});