Skip to content

Muukuro/spotify-latest-releases

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spotify Latest Releases

Go to spotify.danieldiekmeier.de to try it yourself!

List the latest albums of your followed artists in chronological order.

Screenshot

Installation

You can install this on your own server, if you want.

Before you start, you should register an application with Spotify, by going here: https://developer.spotify.com/my-applications/#!/applications. This is where you get your clientId and clientSecret, and where you have to enter your redirectUri.

  1. Clone
  2. Run yarn to install the dependencies
  3. Create config/index.js and config/client.js, with following contents:
// index.js
const clientConfig = require('./client')

module.exports = Object.assign({
  port: 5000,
  clientSecret: <client_secret>
}, clientConfig)
// client.js
module.exports = {
  clientId: <client_id>,
  redirectUri: <your_redirect_url>
}
  1. Run yarn build
  2. Run node src/app.js
  3. Go to localhost:5000 to see the app.

Make sure you have Node >= 7.6 installed.

About

List the latest albums of your followed artists in order

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.4%
  • Vue 3.5%
  • HTML 0.1%