A simple npm package for fetching lyrics using the Popcat API.
npm install github:Nansess/nan-lyrics
const LyricsAPI = require('nan-lyrics');
lyricsApi.getLyrics('sad')
.then(lyrics => {
console.log('Lyrics:', lyrics);
})
.catch(error => {
console.error('Error:', error.message);
});