This app allows you to search Spotify for the 150(-ish) most popular albums from a given year.
- Node 9 +
- Now (for deployment)
Deploying to now.sh is pretty straightforward (assuming you have CLI tools):
- Register an app with Spotify, and place your
client_id
,secret
, andredirect_uri
in an object undersrc/data/secrets.js
//secrets.js
const secrets = {
client_id: 'id',
client_secret: 'secret',
redirect_uri: 'http://foo.bar'
}
Then...
npm run build
now
MIT
- Fork it
- Create your feature branch (
git checkout my-new-feature
) - Commit your changes (
git commit -am
Add some feature`) - Push to the branch (
git push origin my-new-feature
)