@joehoel/lyric-finder
v1.0.2
Published
> Library to easily find song lyrics and other information about songs
Downloads
33
Readme
Lyric Finder
Library to easily find song lyrics and other information about songs
Install
npm install @joehoel/lyric-finder
// or
yarn add @joehoel/lyric-finder
Usage
import search from '@joehoel/lyric-finder';
async function main() {
const { lyrics } = search('Wrecked');
console.log(lyrics);
}