Explore your Spotify playlists with a network view of your playlists over time.
Quickstart:
git clone https://github.com/jamjar919/spotify-network-explore.git
cd spotify-network-explore
yarn install
yarn 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 build
will run tests as well as build the server/clientyarn run build:server
oryarn run build:client
builds just the server or client.- You can also use
yarn run build:server:dev
andyarn run build:client:dev
to 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 test
runs 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.