lyric-fetcher
v1.0.4
Published
Fetches lyrics to songs from online sources
Downloads
4
Maintainers
Readme
Lyric Fetcher
Fetches lyrics to songs from online sources
Example
const lyrics = require('lyrics-fetcher')
let songInfo = {
artist: 'The Fratellis',
song: 'Chelsea Dagger'
}
lyrics(songInfo, (err, data) => {
if (err)
return console.error(err)
console.log(data)
})