0.3.1 • Published 8 years ago

soundcloud-searcher v0.3.1

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

Soundcloud Searcher

Search soundcloud and find good tracks. Filter them by genre to extract what you need.

Installation

npm i --save soundcloud-searcher

Usage

var scSearcher = require('soundcloud-searcher')

// Initi with your clientId. https://soundcloud.com/you/apps
scSearcher.init('YOUR_CLIENT_ID')

var options = {
  name: 'witcher3',
  limit: 5, genres: [scSearcher.genre.Soundtrack],
  tags: ['videogame', 'witcher']
}

scSearcher.search(options)
  .then((result) => {
    console.log(result)
  })
  .catch((error) => {
    console.log(error)
  })

// ...

License

The files included in this repository are licensed under the MIT license.

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago