1.0.1 • Published 6 years ago

get-azlyrics v1.0.1

Weekly downloads
4
License
GPL-3.0
Repository
github
Last release
6 years ago

get-azlyrics

NodeJS package to get lyrics from AZLyrics by simple Artist - Song query.

Example usage:

'use strict'
const lyrics = require('get-azlyrics');

lyrics.getLyrics('daft punk - Daftendirekt')
    .then(x => console.log(x))
    .catch(err => console.log(err))
    // outputs: Dafunk back to the punk come on

It is pretty crappy and broken, and you're more than welcome to fix my spaghetti code.