Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.01 KB

MusicApp

A Vue.js single page application that displays the Pink Floyd discography using the TheAudioDB API as it's source.

MusicApp is created using Vue CLI. It uses Vuex for state management and Vue Router for client-side routing.

For the tests, Vue Test Utils with Jest is used.

Some notes

  • Styling is applied using app-level and in-component custom SCSS
  • Simple in-memory caching of albums data for better performance
  • Scroll position is restored in list view for better UX
  • Scroll back to top functionality

View it live at https://kouts-music-app.netlify.app

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your unit tests

npm run test:unit

Lints and fixes files

npm run lint