azlyricsman
v0.1.5
Published
Gets the lyrics, title, and author off of what song you provide.
Readme
azlyricsman

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