multilyrics-wrapper
v1.0.3
Published
Get lyrics from a lot of providers.
Readme
multilyrics-wrapper
Get lyrics from a lot of providers.
Currently, it only support Musixmatch. More soon!
Usage
import { musixmatch } from "multilyrics-wrapper";
async function getLyrics(title: string) {
const lyrics = await musixmatch.search(title);
return lyrics;
}