Explore your Spotify playlists with a network view of your playlists over time.
Quickstart:
git clone https://github.com/jamjar919/spotify-network-explore.gitcd spotify-network-exploreyarn installyarn run assemble start
This compiles both the server and client side code, then runs the server at http://localhost:80, which you can then open in your browser and go to.
yarn run buildwill run tests as well as build the server/clientyarn run build:serveroryarn run build:clientbuilds just the server or client.- You can also use
yarn run build:server:devandyarn run build:client:devto run both of these processes in watch mode, which will automatically recompile your code if files are changed. It's smart enough to not rebuild the server when you only change client code which is handy. yarn run testruns tests, obviously
My workflow is to run yarn run build:server:dev and yarn run build:client:dev in seperate tabs and keep an eye on the output whilst I work.