Search for artwork over iTunes using their public API.
You can access to the app from GitHub pages or by downloading the repository and opening the index.html file located in the "dist" directory.
In order to develop you need NodeJS and a node dependency manager yarn (recommended) or npm.
Once you have this installed open a terminal and install the dependencies:
> cd <project location>
> yarn
or with npm
> cd <project location>
> npm install
Then run this to start compiling in watch mode yarn watch
or npm run watch
, if you also want to start a webserver locally yarn serve
or npm run serve
this will start a browser-sync webserver where all interactions are synched between sessions.
You can access the non browser-sync server from the port 8001
.
Once you've finished you have to build the app, this will minify all js files and compile SASS into CSS. You can run the build
script yarn build
or npm run build
.