Simple imitation from SoundCloud, made for learning purposes. After trying React, I wanted to learn how the whole ecosystem from Vue works.
https://danychi.github.io/vue-cloud/
# install dependencies
$ npm install # Or yarn install
# serve with hot reload at localhost:3000
$ npm run dev
# build for production and launch server
$ npm run build
$ npm start
# generate static project
$ npm run generate
Several javascript packages in this project.
-
vue: The progressive JavaScript Framework
-
nuxt: Universal Vue.js Applications
-
vuex: Centralized State Management for Vue.js
-
vuex-redux-saga: Use redux-saga with Vuex
-
vuex-persistedstate: Persist Vuex state with localStorage
-
vue-styled-components: Visual primitives for the component age. A simple port for Vue of styled-components 💅
Since a long time ago I wanted to make a simple 'Sound Cloud' web player. This repo https://github.com/R3l4x3/soundcloud-webplayer really helped me to start with it, thanks to R3l4x3.