react-soundcloud-widget-player is a simple SoundCloud player using the Widget API
yarn add react-soundcloud-widget-player
Ensure you include the soundcloud widget player API
<script type="text/javascript" src="https://w.soundcloud.com/player/api.js"></script>
Then init your player
import Player from 'react-soundcloud-widget-player'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'
class TestComponent extends Component {
render() {
return (
<div>
<Player
title='EASYFUN - Be Your USA feat. Iiris'
audioUrl="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/449016357"
/>
</div>
)
}
}
ReactDOM.render(<TestComponent />, document.getElementById('root'))
Uses styled-components 💅 for the base styling.
yarn
yarn dev
yarn test
yarn
yarn build
npm login
npm version patch
git add -A
git push origin master
npm publish