
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
react-podcast-ninja
Advanced tools
A React component for playing podcast from RSS feed, supports chapters namespaces from podcastindex.org.
npm i react-podcast-ninja # or yarn add react-podcast-ninja
import React from 'react'
import {NinjaPlayer} from 'react-podcast-ninja'
// Render a podcast player with multiple episodes
<NinjaPlayer
configs={configs}
playerId={`${showId}-playlist`}
episodes={episodes}
/>
By default, NinjaPlayer comes with a playlist. You can disable the playlist by setting singleEpisode props to true.
| Prop | Description | Default |
|---|---|---|
| playerId | id for the player | |
| episodes | Episodes to play. | [] // empty array |
| configs | player colors | { hidePubDate: false, primaryBackgroundColor: "#0c1824", primaryButtonColor: "#f7f8f9", primaryTextColor: "#f7f8f9", progressBarFilledColor: "#f7f8f9",progressBarBackgroundColor: "#8A8175",playlistBackgroundColor: "#30343c",playlistTextColor: "#f7f8f9", chapterBackgroundColor: "#30343c",chapterTextColor: "#f7f8f9" } |
| singleEpisode | Set to true or false to display the playlist panel | false |
| Name | Type | Required |
|---|---|---|
| title | String | yes |
| podcastTitle | String | yes |
| artworkUrl | String | yes |
| pubDate | DateTime | yes |
| link | String | no |
| audioUrl | String | yes |
| chaptersUrl | String | no |
import React from 'react'
import {NinjaPodcastPlayer} from 'react-podcast-ninja'
// Render a podcast player with multiple episodes
<NinjaPodcastPlayer
playerId="podcast-example"
rssFeedUrl={rssFeedUrl}
configs={configs}
/>
Similar to the <NinjaPlayer/>, except it requires the RSS feed.
While adding the PodcastIndex chapters namespace support to JustCast, I began noticing most of podcast widget players haven't support the chapters namespace yet.
I hope more podcasters can enbrace the chapters namespace, and someone can use it to get a head start into building something amazing!
If you would like to contribute to this open source project, please feel free to submit a PR.
FAQs
A simple react component that plays back podcast
The npm package react-podcast-ninja receives a total of 7 weekly downloads. As such, react-podcast-ninja popularity was classified as not popular.
We found that react-podcast-ninja 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.