Skip to content

moshfeu/podcast-player

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Podcast webapp for play and display the post, all from the RSS!

Credits

Live version

http://makinghistory.smydesign.co.il

Configuration

Configuration object should be in default.js file with these props:

config = {
  remoteBaseURL: string, /* required, the website url (to display the audio page) */
  feedURL string, /* required */
  getPageCallback (page: JQuery): Function => void /* optional, do whatever you want (like remove unnecessary nodes etc.)  */,
  getContent(response: JQuery): Function => string, /* required, `page` is a jQuery element which hold the body of the page, should returns string */
}

Also, You need a simple php server to run the proxy.php. For localhost I'm using the built-in php server

Installation

npm install
npm start