
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.
This is a node package to get info about cinemas, movies, sessions, times on Cinesa's cinemas. For Yelmocines check this one.
npm i --save cinejsa
import { getCities } from "cinejsa"
const cityNames: string[] = getCities();
import { getCities, getCityCinemas } from "cinejsa"
const cityNames: string[] = getCities();
const cinemas: string[] = getCityCinemas(cityNames[0])
import { getFilmsFromCinema } from "cinejsa"
const today = new Date()
getFilmsFromCinema("La Gavia", today)
.then(data => console.log(data))
[
{
"title": "Doctor Strange en el Multiverso de la Locura",
"premiere": false,
"duration": 126,
"genre": "Acción - Aventura",
"sessions": [
{
"room": 1,
"time": "22:15"
}
]
},
{
"title": "Jurassic World: Dominion",
"premiere": true,
"duration": 147,
"genre": "Aventuras - Ciencia Ficción",
"sessions": [
{
"room": 10,
"time": "20:50"
},
{
"room": 3,
"time": "22:05"
},
{
"room": 4,
"time": "22:50"
},
{
"room": 5,
"time": "21:25"
},
{
"room": 7,
"time": "21:45"
},
{
"room": 8,
"time": "20:25"
},
{
"room": 9,
"time": "23:25"
}
]
},
{
"title": "Live is life",
"premiere": false,
"duration": 109,
"genre": "Comedia - Drama",
"sessions": [
{
"room": 2,
"time": "21:35"
}
]
},
{
"title": "Top Gun: Maverick",
"premiere": false,
"duration": 130,
"genre": "Acción - Drama",
"sessions": [
{
"room": 6,
"time": "21:55"
},
{
"room": 8,
"time": "23:45"
}
]
}
]
FAQs
Node package to get Cinesa info
We found that cinejsa 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.