gdiab / spotify-latest-releases

List the latest albums of your followed artists in order

Home Page:https://spotify.danieldiekmeier.de/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spotify Latest Releases

Go to this website 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

https://spotify.danieldiekmeier.de/

License:MIT License


Languages

Language:JavaScript 96.5%Language:Vue 3.4%Language:HTML 0.1%