better-lyric-get

1.1.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i better-lyric-get

Weekly Downloads

0

Version

1.1.0

License

MIT

Unpacked Size

3.69 kB

Total Files

4

Last publish

Collaborators

  • samplasion