lyrics-parse

1.1.1 • Public • Published

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

Package Sidebar

Install

npm i lyrics-parse

Weekly Downloads

5

Version

1.1.1

License

ISC

Unpacked Size

3.35 kB

Total Files

4

Last publish

Collaborators

  • deebah