Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luchkonikita/music_player

Music player for VK built with electron
https://github.com/luchkonikita/music_player

Last synced: 2 days ago
JSON representation

Music player for VK built with electron

Awesome Lists containing this project

README

        

# Music player for VK.com

![alt text](docs/screenshot.png 'App screenshot')

Current functionality includes:

* Retrieving user's audios
* Searching for songs from another user's audios
* Adding a song to user audios
* Downloading a song which is playing now
* to be continued...

##### Approximate state structure used in application:

```javascript
{
userData: {
access_token: 'token',
expires_in: '86400',
user_id: 1
},
currentSong: {
artist: 'Artist',
title: 'Title',
currentTime: 213,
duration: 310,
isPlaying: true,
progress: 80
},
songsList: [
{
title: 'Title',
artist: 'Artist',
isOwn: true,
isAdded: false
}
]
}
```