Skip to content

khiemtong/SoundExplorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sound Explorer

Simple exploration project using node to create a shared DJing application. Music is powered by the SoundCloud API.

Configuration

To run the application a configuration object with the relevant SoundCloud API credentials needs to be supplied.

  • Run mkdir config
  • Run vi config/default.json
  • Copy into file
  {
    "SoundCloud" : {

      "clientId" : "<CLIENT ID>",
      "clientSecret": "<CLIENT SECRET>",
      "redirectUrl" : "<CALLBACK URL>"

    }
  }
  • Fill in credentails
  • In js/searchController.js, set SoundCloud client id
    // Initialize client id here
    var scClientID = '<CLIENT_ID_HERE>';
    SoundCloudService.init(scClientID);

Setup

  • npm install
  • bower install
  • npm start

About

SoundCloud shared DJing web app using websockets

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published