/azlyricsman

Gets the lyrics from https://azlyrics.com

Primary LanguageJavaScript

azlyricsman Build Status Dependency Status

npm package

This uses azlyrics and gets the song of your choice and returns a promise with song lyrics, title, and song

Usage:

const lyrics = require('azlyricsman');

const get = lyrics.get('Meme Machine').then((song) => {
   console.log(`Lyrics for ${song.song} by ${song.artist}:\n${song.lyrics}`);
});