1.1.1 • Published 3 years ago

lyrics-parse v1.1.1

Weekly downloads
69
License
ISC
Repository
-
Last release
3 years ago

Table of contents

About

lyrics-parse is a node.js module that is a simple, quick, and easy way to get lyrics by searching and parsing google.

Since it parses google, no api keys are required!

Installation

npm install lyrics-parse

Usage

const lyricsParse = require('lyrics-parse');

(async () => {
  const title = "Looking Out For You";
  const author = "Joy Again";
  const lyrics = await lyricsParse(title, author); 
  // Will return false if no lyrics found.
  console.log(lyrics ? lyrics : "No Lyrics Found."); 
  // If the lyrics are found, log them, otherwise log "No Lyrics Found."
})();
1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago