Skip to content

JesseVelden/Node-Spotify-Playlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js - Spotify Playlist Data

Get all data from both public or private Spotify Playlists without authentication. Based on node-spotify-data.
Due the widget 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.

About

Node.js - Spotify Playlist Data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published