
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-playlist-player
Advanced tools
npm install react-playlist-player mobx mobx-react --save
You'll also need the following devDependencies:
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@craco/craco": "^5.6.4",
"node-sass": "^6.0.1"
}
then update the scripts:
"scripts": {
"start": "craco start",
"build": "craco build"
}
and add a craco.config.js at the root of your project:
module.exports = {
reactScriptsVersion: "react-scripts",
babel: {
plugins: [["@babel/plugin-proposal-decorators", { legacy: true }]]
}
};
import React, { Component } from 'react'
import { render } from 'react-dom'
import AudioPlayer from 'react-playlist-player'
class Demo extends Component {
state = {
currentPlayList: {}
}
loadPlayList = () =>
this.setState({
currentPlayList: {
playlistCoverUrl: 'path/to/coverUrl',
playlistName: 'playlist name',
bandName: 'band name',
songs: [
{
position: '1',
songName: 'foo',
songUrl: 'path/to/songUrl'
},
{
position: '2',
songName: 'bar',
songUrl: 'path/to/songUrl'
},
{
position: '3',
songName: 'baz',
songUrl: 'path/to/songUrl'
}
],
type: 'album'
}
})
render() {
return (
<div className={'Demo'}>
<button className={'Demo__load-btn'} onClick={this.loadPlayList}>
load playlist
</button>
<AudioPlayer currentPlayList={this.state.currentPlayList}
onToggle={({audioPlaying}) => console.log({audioPlaying})}
onSongChanged={({currentSong}) => {console.log(currentSong)}}
/>
</div>
)
}
}
render(<Demo />, document.querySelector('#demo'))
| Prop | Type | Required | Description |
|---|---|---|---|
| onToggle | Function | A function to be excuted on audio toggle. It'll get passed {audioPlaying} as an argument | |
| onSongChanged | Function | A function that is called when a song changes, receives {currentSong} as param | |
| currentPlayList | Object | * | An object containing the playlist data |
| playlistCoverUrl | String | * | A path to the cover image (prop of currentPlayList) |
| playlistName | String | * | Playlist name (prop of currentPlayList) |
| bandName | String | * | Band name (prop of currentPlayList) |
| songs | Array | * | Array of songs(objects) to be played (prop of currentPlayList) |
| position | String | Song's position in playlist (prop of songs) | |
| songName | String | * | Song name (prop of songs) |
| songUrl | String | * | A path to the song (prop of songs) |
import { toggleAudio } from 'react-playlist-player'
// Plays / pauses the audio
toggleAudio()
FAQs
A React component for playing playlists
We found that react-playlist-player demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.