spotify-js
v0.0.2
Published
Spotify Web API SDK
Downloads
15
Readme
Spotify Web API Javascript SDK
This is a quick Node SDK for the Spotify Web API. Currently only the album and artist endpoints are partially implemented. Please, feel free to contribute.
Todo
- Implement the rest of the endpoints
- Implement user authentication
- Write docs representative of the SDK, rather than of the API
Usage
var s = require('spotifySdk'),
spotify = new s();
spotify.albums.find('0sNOF9WDwhWunNAHPD3Baj',function(err, data){
if (!err) console.log(data);
});
Development
There are some notes regarding the API for use in development in a comment in this file. Any PRs are very welcome indeed.
Thanks
This SDK was inspired by @jacobwg's SDK for The Echo Nest API, so thanks for that :)