1.1.0 • Published 6 years ago

better-lyric-get v1.1.0

Weekly downloads
5
License
MIT
Repository
-
Last release
6 years ago

lyric-get

npm version

Module for fetching lyrics from lyrics.wikia.com using artist name and song. While it is illegal to use this:

...not use any robot, spider, scraper or other automated means to access the Site for any purpose without our express written permission...

for those of you who don't care here it is!

Installation

npm install better-lyric-get

Usage

var l = require("better-lyric-get");

l.get("John Lennon", "Imagine", (err, res) => {
    if(err) {
        console.log(err); // "Song not found"
    } else {
        console.log(res); // { lyrics: "...", author: "John Lennon", title: "Imagine" }
    }
});
1.1.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago