soundcloud-badge-packed
v1.0.1
Published
soundcloud-badge webpack version. so you don't need browserify
Downloads
4
Maintainers
Readme
soundcloud-badge-packed
A SoundCloud "now playing"-type thing. Makes it easy to stream from SoundCloud and ensure you're giving the appropriate credit too. It has no dependency.
Usage
require('soundcloud-badge-packed')({
client_id: 'your API client ID'
, song: 'https://soundcloud.com/dylan_king/modern-housing'
, dark: true
, getFonts: true
}, function(err, src, data, div) {
if (err) throw err
// Play the song on
// a modern browser
var audio = new Audio
audio.src = src
audio.play()
// Metadata related to the song
// retrieved by the API.
console.log(data)
})
Just call soundcloud-badge-packed
, these options should do these things:
client_id
: your SoundCloud API client ID.song
: the SoundCloud URL for your song: usingsoundcloud-resolve
you'll get the matching data for your song included.dark
:true
for black text/icons, andfalse
for white. Defaults totrue
.getFonts
: by default, the badge will pull in fonts from Google Fonts. Set this tofalse
if you'd rather it not do that.