album-art

node v8.17.0
version: 2.0.0
endpointsharetweet
const albumArt = require('album-art') /* DEMO */ const artist = 'Ben Folds' const options = { album: 'So There' } albumArt(artist, options, function (err, res) { console.log('error: ', err) console.log('response: ', res) }) /* END DEMO */ /* Endpoint for live testing */ exports.endpoint = async (request, response) => { // Read request const url = require('url') const req = url.parse(request.url, true) // Use GET parameters as search options ?album=...&size=... const {search} = req.query const opts = req.query // Search and respond with results (fallback to default if no search provided) response.end( JSON.stringify( await albumArt( search || artist, opts ) ) ) }
Loading…

no comments

    sign in to comment