findango-api
v1.0.0
Published
Wrapper for the Fandango 'Nearby Movies' RSS feed.
Downloads
5
Readme
🎥 findango-api
Wrapper for Fandango's "Nearby Movies" RSS feed.
Usage
Findango.find
returns a Promise
that resolves to a set of theatre results:
var Findango = require('findango-api')
Findango.find({
zipCode: '94107'
}).then(theatres => {
// Theatres have the format:
// {
// name: '…', // Name of theatre
// location: '…', // Theatre address
// films: [{
// title: "Movie Title" // Title of film
// url: '…' // Fandango URL for showtimes
// }]
// }
renderApp(theatres);
});