1.1.19 • Published 1 year ago
napster-info v1.1.19
Napster
Napster Info is a versatile toolkit for interacting with music APIs, empowering you to seamlessly integrate music data into your applications. From song lyrics to exploring artists and playlists, Napster Info has you covered. demo
Installation
Install the napster-info
package effortlessly:
npm install napster-info
Usage
import { getAlbumSongs,
getArtistDetails,
getLyrics,
getPlaylistSongs,
getReelInfo,
getReels,
searchAlbums,
searchArtist,
searchPlaylist,
searchSongWithSuggestion, } from 'napster-info';
// Example usage of getAlbumSongs
getAlbumSongs('albumId').then(songs => console.log(songs));
// Example usage of getArtistDetails
getArtistDetails('artistId').then(details => console.log(details));
// Example usage of getLyrics
getLyrics('songName').then(lyrics => console.log(lyrics));
// Example usage of getPlaylistSongs
getPlaylistSongs('playlistId').then(songs => console.log(songs));
// Example usage of getReelInfo
getReelInfo('reelId').then(info => console.log(info));
// Example usage of getReels
getReels('songName').then(reels => console.log(reels));
// Example usage of searchSong
searchSong('songName').then(songs => console.log(songs));
// Example usage of searchAlbums
searchAlbums('albumName').then(albums => console.log(albums));
// Example usage of searchArtist
searchArtist('artistName').then(artists => console.log(artists));
// Example usage of searchPlaylist
searchPlaylist('playlistName')
.then(playlists => console.log(playlists));
// Example usage of searchSongWithSuggestion
searchSongWithSuggestion('audio')
.then(songs => console.log(songs));
With Napster Info, accessing music data has never been simpler. Integrate it into your project today and elevate your music experience! contact