We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c214c77 commit 2092620Copy full SHA for 2092620
README.md
@@ -53,6 +53,18 @@ The wrapper includes helper functions to do the following:
53
Install via bower (browser):
54
55
$ bower install spotify-web-api-js
56
+
57
+Install via node (since the requests are made using XMLHttpRequest, you will need a tool like Browserify to run this on a browser):
58
59
+ $ npm install spotify-web-api-js
60
61
+Then, in your javascript file
62
63
+```javascript
64
+var Spotify = require('spotify-web-api-js');
65
+var s = new Spotify();
66
+//s.searchTracks()...
67
+```
68
69
or by making a copy of the `src/spotify-web-api.js` file
70
0 commit comments