A wrapper to work with the Spotify Web API.
This library relies on Fetch API. And this API is supported in the following browsers.
39+ ✔ | 42+ ✔ | 29+ ✔ | 10.1+ ✔ | Nope ✘ |
This library depends on fetch to make requests to the Spotify Web API. For environments that don't support fetch, you'll need to provide a polyfill to browser or polyfill to Node.
$ npm install spotify-wrapper --save
// to import a specific method
import SpotifyWrapper from 'spotify-wrapper';
const spotify = new SpotifyWrapper({
token: 'YOUR_TOKEN_HERE'
});
// using method
spotify.search.artists('Incubus');
const SpotifyWrapper = require('spotify-wrapper').default;
const spotify = new SpotifyWrapper({
token: 'YOUR_TOKEN_HERE'
});
<!-- to import non-minified version -->
<script src="spotify-wrapper.umd.js"></script>
<!-- to import minified version -->
<script src="spotify-wrapper.umd.min.js"></script>
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
Lucas Corrêa |
See also the list of [contributors](https://github.com/lucascco/js-tdd-course /contributors) who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details