![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
projection
Advanced tools
Movie showtimes around the globe.
npm install projection --save
var projection = require('projection');
var p = projection();
p.findTheaters('Montreal', {}, function(err, theaters) {
console.log(theaters);
});
p.findMovie('Montreal', 'Mad Max', {}, function(err, movie) {
console.log(movie);
});
Returns an array of theaters (and their showtimes) following this structure:
{
name: 'Cineplex Odeon Forum Cinemas',
address: '2313 Sainte-Catherine Street West, Montreal, QC, Canada',
phone: '(514) 904-1274',
note: '',
movies: [
{
title: 'Insurgent 3D',
duration: '1hr 59min',
rating: 'Rated G',
genre: 'Action/Adventure/Romance',
trailer: 'http://www.youtube.com/watch...',
showtimes:[ '18:00', '20:15' ]
},
// Other movies in this theater...
]
}
Returns the movie and its showtimes in the nearest theaters following this structure:
{
title: 'Mad Max: Fury Road',
desc: 'Haunted by his turbulent past, Mad Max believes[...]',
director: 'George Miller',
cast: [ 'Charlize Theron', 'Tom Hardy' ],
duration: '2hr 0min',
rating: 'Rated 13+',
genre: 'Action/Adventure/Scifi/Fantasy',
trailer: 'http://www.youtube.com/watch[...]',
theaters: [
{
name: 'Scotiabank Theatre Montreal',
address: '977 rue Sainte-Catherine Ouest, Montreal, QC, Canada',
showtimes: [ '19:50', '22:15' ]
},
// Other theaters with this movie...
]
}
Any contribution is welcomed!
FAQs
Fast acquisition of movie showtimes around the globe
The npm package projection receives a total of 2 weekly downloads. As such, projection popularity was classified as not popular.
We found that projection 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.