1.0.4 • Published 4 years ago

lyric-fetcher v1.0.4

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

Lyric Fetcher

NPM Version

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)
})