lucascco / js-tdd-course

The project builds throughtout the course 'JS com TDD na Prática' with Willian Justen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spotify Wrapper

Build Status

Coverage Status

A wrapper to work with the Spotify Web API.

Browser Support

This library relies on Fetch API. And this API is supported in the following browsers.

Chrome Firefox Opera Safari IE
39+ ✔ 42+ ✔ 29+ ✔ 10.1+ Nope ✘

Dependencies

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.

Installation

$ npm install spotify-wrapper --save

How to use

ES6

// to import a specific method
import SpotifyWrapper from 'spotify-wrapper';

const spotify = new SpotifyWrapper({
  token: 'YOUR_TOKEN_HERE'
});

// using  method
spotify.search.artists('Incubus');

CommonJS

const SpotifyWrapper = require('spotify-wrapper').default;

const spotify = new SpotifyWrapper({
  token: 'YOUR_TOKEN_HERE'
});

UMD in Browser

<!-- to import non-minified version -->
<script src="spotify-wrapper.umd.js"></script>

<!-- to import minified version -->
<script src="spotify-wrapper.umd.min.js"></script>

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

Lucas Corrêa
Lucas Corrêa

See also the list of [contributors](https://github.com/lucascco/js-tdd-course /contributors) who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

The project builds throughtout the course 'JS com TDD na Prática' with Willian Justen

License:MIT License


Languages

Language:JavaScript 93.6%Language:HTML 6.4%