Skip to content

mic-max/lyric-fetcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lyric Fetcher

Node.js Package 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)
})