azlyrics-ext

Just a simple AZLyrics.com scraper.

Usage no npm install needed!

<script type="module">
  import azlyricsExt from 'https://cdn.skypack.dev/azlyrics-ext';
</script>

README

AZLyrics Extractor 🎶

🤔 Whats is this?

Just a simple AZLyrics.com scraper.

💻 Installation

npm install azlyrics-ext

⚙️ Usage

const AZLyrics = require("azlyrics-ext");
import * from AZLyrics from "azlyrics-ext";

📎 Links

✏️ Examples

Searching

const songs = await AZLyrics.search("faded");

console.log(songs);

Searching and fetching lyrics

const songs = await AZLyrics.search("faded");

const { title, lyrics } = await AZLyrics.getTrack(songs[0].url);
console.log(`Lyrics of ${title}`);
console.log(lyrics);