genius-lyrics-api icon indicating copy to clipboard operation
genius-lyrics-api copied to clipboard

A library for "fetching" song lyrics & album covers from genius.com 🎤 🎶

Results 11 genius-lyrics-api issues
Sort by recently updated
recently updated
newest added

Added checking for required parameter, fix breaking URL query parameter.

Get song by id gives me 401 response. I think it's because of this line `${url}${id}&access_token=${apiKey}` instead of `${url}${id}?access_token=${apiKey}`.

Hey! Getting a Cross-Origin Request Blocked response from Genius on local host and on Netlify. Is there an updated workaround for this? Cheers!

Using !key would lead to false positive when sending empty string in title or artist

I got the same problem as one of the closed (and never solved) issues. Its working on my computer but when I push it to the server it only returns...

I thought its just issue when I was developing the website using this library, so I used the addon to bypass the CORS rules. But I deployed it via firebase...

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Really needed this since, I was facing difficulties working with only text responses.

```javascript const getTitle = (title, artist) => { return `${title} ${artist}` .toLowerCase() .replace(/ *\([^)]*\) */g, '') .replace(/ *\[[^\]]*]/, '') .replace(/feat.|ft./g, '') .replace(/\s+/g, ' ') .trim(); }; console.log(getTitle("All Night (BTS World...