Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

alexbcberio/itunes-artwork-finder

Repository files navigation

itunes-artwork-finder

Search for artwork over iTunes using their public API.

Accessing the app

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.

Developing locally

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.

Building for production use

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.