music-cover
v0.1.0
Published
Fetch album covers and artist pictures from last.fm
Downloads
1
Maintainers
Readme
album-cover
Fetch album covers from last.fm
$ npm install album-cover
var covers = require('album-cover')('api key from last.fm');
covers.search({
artist: 'Pendulum',
album: 'Watercolour',
size: 'mega'
}, function(err, res) {
console.log(res);
});
If you want to get all available sizes, set size
to all
. If you want an artist picture instead of an album cover, do not specify artist
.
License
MIT