A Last.fm listening history aggregator using React & Redux
My starting point for this was the "real world" example from the official Reduxjs repo.
Add a ./config.js
that exports your last.fm username and an API Key like so:
module.exports = {
lastfmUser: 'username',
lastfmApiKey: 'api_key',
googleAnalyticsKey: 'your_key'
}
An analytics key is required, but only for production builds (npm build
)
git clone
npm install
npm start
npm build