Script to retrieve the soundcloud user id of an artist
npm install soundcloud-user-idTo use the script:
``
const soundcloudService = require('soundcloud-user-id')
soundcloudService.getSoundcloudUserId('justinbieber')
.then(soundcloudUserId => {
console.log('id: ', soundcloudUserId)
})
``