spotify-js

0.0.2 • Public • Published

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 :)

Readme

Keywords

Package Sidebar

Install

npm i spotify-js

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • hughrawlinson