Web app for searching music in iTunes.
Before you start, make sure you have a recent version of NodeJS environment >=6.0 with NPM 3 or Yarn.
From the project folder, execute the following commands:
npm install # or: yarn install
This will install all required dependencies, including a local version of Webpack that is going to build and bundle the app. There is no need to install Webpack globally.
To run the app execute the following command:
npm start # or: yarn start
This command starts the webpack development server that serves the build bundles. You can now browse the skeleton app at http://localhost:8080 (or the next available port, notice the output of the command). Changes in the code will automatically build and reload the app.