A Simple Lyrics Finder That Just Works
npm install --save lyrics-searcher
import lyricsSearcher from "lyrics-searcher";
lyricsSearcher("poets of fall", "carnival of rust")
.then((lyrics) => {
console.log(lyrics);
})
.catch((error) => {
console.error(error);
});
npx lyrics-searcher "a r rahman" "kun faya kun"
Note: Use this method only if you plan to use lyrics-searcher for one time, installing lyrics-searcher globally (see-below) is recommended for multiple time usages.
npm install lyrics-searcher -g
Note for Linux & MacOS users: DO NOT use sudo to install global packages! The correct way is to tell npm where to install its global packages:
npm config set prefix ~/.local
. Make sure~/.local/bin
is added toPATH
.
lyrics-searcher "prateek kuhad" "cold mess"
For CLI usage, see the help option:
npx lyrics-searcher --help
For programmatic usage, use the default exported module. It takes two arguments. Artist name and Song name. It returns a promise which resolves into a string containing the lyrics if found, otherwise it will throw an exception (with an error message).
👤 Rahil Kabani
- Website: https://alias-rahil.github.io
- Github: @alias-rahil
- Email: [email protected]
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a ⭐️ if this project helped you!
Copyright © 2021 Rahil Kabani.
This project is MIT licensed.