bandcamp-fetch/examples/getShow.js

8 lines
221 B
JavaScript
Raw Normal View History

2021-02-03 11:09:12 +01:00
const bcfetch = require('../');
const util = require('util');
const showUrl = 'https://bandcamp.com/?show=421';
bcfetch.getShow(showUrl).then( results => {
console.log(util.inspect(results, false, null, false));
});