azlyrics-ext
v1.0.1
Published
Just a simple AZLyrics.com scraper.
Downloads
16
Readme
🤔 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);