Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

spotify-playlist

MegaCookie410.0.4

Get Spotify Playlist data without authentication

spotify, data, playlist

readme

Node.js - Spotify Playlist Data

Get all data from both public or private Spotify Playlists without authentication. Based on node-spotify-data.
Due the widged limitation of Spotify, it is only able to load the first 200 songs.

Dependencies

This project depends on restler to make HTTP(S) requests, spotify-uri for converting Spotify URI's and cheerio.

Install

npm install spotify-playlist --save

Usage

var spotifyPlaylist = require('spotify-playlist');

var callback = function(err, result) {
    console.log(result.playlist.tracks);
}

spotifyPlaylist.playlistUri('spotify:user:spotify:playlist:6RU5ydGPBQ8fJKWAqMj8Hg', callback); //Normal spotify URI.
spotifyPlayList.playlist('syknyk', '0Idyatn0m08Y48tiOovNd9', console.log); //Using username and playlist ID as parameters.