soundcloud-searcher
v0.3.1
Published
Find the tracks you want
Downloads
65
Readme
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.