bandcamp-fetch/examples/getFanInfo.js

13 lines
272 B
JavaScript
Raw Normal View History

2022-06-23 14:09:44 +02:00
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));
});