Create your own tracklist by searching sounds that you like and adding them to your tracklist queue. You can set the playlist on autoplay
mode and the tracks will play sequentially.
cd ./syncloud-queue
yarn
ornpm install
yarn start
ornpm run start
- https://mobx.js.org/README.html- Mobx docs
- https://github.com/soundblogs/react-soundplayer - React widget component
- https://developers.soundcloud.com/docs/api/guide#search - SoundCloud API search query
- https://developers.soundcloud.com/docs/api/reference#tracks - Soundcloud API tracks attributes
{
// an ID of the current song that is currently
// playing in the tracklist
// DEFAULT: -1
currentTrackPlayingID: number,
// a global queue of tracks added by the user
// DEFAULT: []
tracklist: array
}