get-lyrics-hd
v0.0.1
Published
Get a song's lyrics
Downloads
204
Maintainers
Readme
get-lyrics - Get lyrics in your apps
get-lyrics allows you to get lyrics from a song in your app.
All credit to https://github.com/trekiteasy/get-lyrics
I folk this cos the original repo look inactive.
How to install
npm install get-lyrics --save
How to use
Simple code :
search('Artist name', 'Song name')
Full code :
include * as lyrics from 'get-lyrics'
lyrics.search('Hindi Zahra', 'Fascination')
/**
* This will return a Promise which will resolve in :
* "One of these days you know [...]"
* /
the response object will be with the following format :
{
lyrics, // Contains the lyrics in a text format
provider, // Contains an identifier of the source
url // Contains a link to the lyrics
}